I have 5 buttons and each of them load their own swf…
On each button I have this…With different loaded movies obviously…And different levels.
[AS]on (release) {
_root.createEmptyMovieClip(“emptyMC”, 5);
_root.emptyMC._x = 225;
_root.emptyMC._y = 238;
_root.emptyMC.loadMovie(“Photos.swf”);
}[/AS]
What do I add to that so when another button is clicked, that movie unloads and the new one can load?!