Clearing and loading 2 movie clips one after the other

would anyone know how to clear an externaly loaded movie clip from a empty movie clip?, then load a diffrent external movie clip and then load another different external movie clip by clicking on a movie clip acting as a button?

How are you loading an external movieClip??
If it’s an external swf file, then it should unload automatically.
If not, use this:


_root.movieClip.unloadMovie();

As for the movieClip acting as a button, just add this to actions:


on(release){
_root.movieClip.loadMovie("whatever.swf");
}

Is that what you mean??

that unload line helped and thanks for replying i figured it out:)

cool…:slight_smile: