ice78991
Programmer
- Nov 20, 2006
- 216
I have loaded a clip into my main movie as follows
createEmptyMovieClip("swf_Holder_mc",3);
introLoader.loadClip("slide.swf",swf_Holder_mc);
At some point I want to load a different or reload the same swf into this clip
I have tried the code below,but it is not removing and replacing the original clip although it does place a new clip below the original
swf_Holder_mc.stop();
swf_Holder_mc.removeMovieClip();
createEmptyMovieClip("swf_Holder_mc",3);
introLoader.loadClip("slide.swf",swf_Holder_mc);
createEmptyMovieClip("swf_Holder_mc",3);
introLoader.loadClip("slide.swf",swf_Holder_mc);
At some point I want to load a different or reload the same swf into this clip
I have tried the code below,but it is not removing and replacing the original clip although it does place a new clip below the original
swf_Holder_mc.stop();
swf_Holder_mc.removeMovieClip();
createEmptyMovieClip("swf_Holder_mc",3);
introLoader.loadClip("slide.swf",swf_Holder_mc);