Is there a way to call a frame that is within a movie clip via MouseEvent? Here is my button code as it stands:
Code:
contact_btn.addEventListener(
MouseEvent.MOUSE_DOWN,
function(evt:MouseEvent):void {
gotoAndStop("contact");
}
);
I want to add a gotoAndPlay action to an exit animation. I know I need to create a variable for the exit animation to be called which is dependent upon the page that is currently being viewed. The problem is each of these exit animations exist within different movie clips. The exit animation that plays is dependent on the page the user is viewing. How can I make this happen in 3.0?
|