How to stop scenes from playing one after the other?
Hey there
I created an opening scenes with button links to other scenes
I use this code to move to other scenes when clicking the buttons:
ames_room.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene);
function fl_ClickToGoToScene(event:MouseEvent):void
{
MovieClip(this.root).gotoAndPlay(1, "Scene 4");
}
my problem is: I don't want flash to automatically continue to scene 2 but when I write a stop() action at the end of this scene, the button actions that link to other scenes stop to work
how should I write the stop action? or what should I do differently?
Thanks!
