Forgive me but I’m having trouble with this piece of AS and I don’t understand why. I’m sure it is something simple that I’m overlooking this morning. Your help and understanding is appreciated.
for (i=1; i<2; i++) {
mc = "Clip"+i;
swf = "logo.swf";
_root.createEmptyMovieClip(mc, i+30);
_root.mc.loadMovie(swf, 0);
}
I want to eventually create multiple instances of the MC. I simplified the code as much as possible for this question and it still doesn’t work.
When debugging, Clip1 and Clip2 are created as objects and it doesn’t return an error about the logo.swf not being available but it also doesn’t show the logo.swf either.