Unloading MC

i followed the direction in the targeting tutorial…and ive got an external MC to load in level 1, but ive got a ‘x’ button in the movie clip that loads and want that button to get rid of the MC…i cant figure this one out…

ive tried getting it to just load an empty MC in level 1 hoping to bump the other one out but no luck…

any ideas?

thanks

load ur MC in to a container at main timeline use this AS:

on (release) {
_root.container.loadMovie(“urMC”, 1);
}

and then use the following AS on the button which unloads ur MC

on (release) {
_root.container.unloadMovie(1);
}

ill give it a try…thanks for the help…:slight_smile: