ForumsProgramming Forumprogramming button and scenes in flash cs4

1 4245
deathrowow
offline
deathrowow
2 posts
Nomad

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

  • 1 Reply
AbnormalIdiot
offline
AbnormalIdiot
110 posts
Nomad

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();
}

Showing 1-1 of 1