i read the tutorial on loading a movie with transitions but i would like to achieve a different effect. Instead of having a mask cover the content loading in, i want to have a closing sequence for each section that is being unloaded. (ie have the movie “undraw” itself) With the masked transition the code would look like this for the home button:
Home.onRelease = function() {
if (_root.section != “Home.swf”) {
_root.section = “Home.swf”;
_root.transition.gotoAndPlay(“closing”);
}
but instead i would want the last line of code to reference the end animation of whichever movie is being unloaded, then load in the movie of the button that is pressed. any ideas?