hi,
i’m trying to play several movie clips, one after the other from one main movie clip.
i’ve got 8 movie clips, “m1.swf”, “m2.swf”, etc. “m8.swf”, and one main movie clip, “play.swf”.
i’ve tried using loadMovie, but it only plays the last movie clip. this is what i’ve got.
in the main movie clip, i’ve put a play button, and the actionscript i have in the button is:
on(release)
{
this.loadMovie(“m1.swf”,play);
//this.unloadMovie(“m1.swf”);
this.loadMovie(“m2.swf”,play);
//this.unloadMovie(“m2.swf”);
this.loadMovie(“m3.swf”,play);
//this.unloadMovie(“m3.swf”);
this.loadMovie(“m4.swf”,play);
//this.unloadMovie(“m4.swf”);
this.loadMovie(“m5.swf”,play);
//this.unloadMovie(“m5.swf”);
this.loadMovie(“m6.swf”,play);
//this.unloadMovie(“m6.swf”);
this.loadMovie(“m7.swf”,play);
//this.unloadMovie(“m7.swf”);
this.loadMovie(“m8.swf”,play);
//this.unloadMovie(“m8.swf”);
}
:h:
is this wrong? how can i get this to work correctly. really important that i get this working for my job.
any help will be greatly appreciated.
cheers