using flash how do i move from one scene to another when clicking a button?

Hussain A

New member
play_btn.addEventListener(MouseEvent.CLICK, play_movie);
function play_movie(evt:Object):void {
gotoAndPlay("Movie");
}

The movie is a different scene
 
Back
Top