Does anybody have a good tutorial for doing this? I need to learn how to enter a next scene, Go back to the past scene and like have a menu option where two different scenes are the option buttons thank you in advance
For entering the next scene, use: nextScene();For going to a previous scene, use: prevScene();For a menu, create the buttons, convert them to movieClips, and give them the script: on(release){nextScene(); // or prevScene();}
You must be logged in to post a reply!