Click to See Complete Forum and Search --> : Unload Movie


r4gn0
07-27-2007, 10:47 PM
Hi, im using

var container:MovieClip = createEmptyMovieClip("container", getNextHighestDepth());
var mcLoader:MovieClipLoader = new MovieClipLoader();
mcLoader.addListener(this);
mcLoader.loadClip("Bienvenidos.swf", container);
container._y=180;
container._x=273;

to upload an appletmovie in a certain frame of a principal .SWF, the principal swf its made by scenes, so, in each scene i load a different appletmovie. The problem is that when i change scene, the previously loaded applet appears in the new scene till the nex applet is loaded.
how can i unload the previous applet??

It will be great some help!! THXS!!

r4gn0
07-28-2007, 06:28 PM
i found the solution!!!!
unloadMovie("container");

:D :D