Advertisement
I am using this script:
for (var i:Number = 0; i < numberOfObjects; i++)
{
this.createEmptyMovieClip("object"+i, i);
this["object"+i].loadMovie("images/bottle"+i+".png");
}
to create a series of movie clips with images. My question is this: if I replaced the .png files with .swf files, could those .swf contain movieclips? If so, how would I reference one of those (say we called it buttonMC)?
Aimee
for (var i:Number = 0; i < numberOfObjects; i++)
{
this.createEmptyMovieClip("object"+i, i);
this["object"+i].loadMovie("images/bottle"+i+".png");
}
to create a series of movie clips with images. My question is this: if I replaced the .png files with .swf files, could those .swf contain movieclips? If so, how would I reference one of those (say we called it buttonMC)?
Aimee
Advertisement
Advertisement