Skip to main content
Known Participant
July 7, 2009
Answered

Inter-Scene Navigation

  • July 7, 2009
  • 1 reply
  • 472 views

I’m stumped.  I have a movie clip that contains a drop down list of buttons. It works fine when I’m navigating to frames within my scene, but it won’t take to a different scene.

Here’s what is in the frame containing choice1_btn  and doesn’t work…

_root.menu_mc.choice1_btn.onRelease = function() {

_root.gotoAndStop("Scene2", 1);

};

Where am I going wrong?

Thanks

This topic has been closed for replies.
Correct answer kglad

don't use scenes for navigation in as2.  (there are well-known bugs though your problem is a misuse of the goto method.)

label that frame and use that label in your goto methods.

1 reply

kglad
Community Expert
kgladCommunity ExpertCorrect answer
Community Expert
July 7, 2009

don't use scenes for navigation in as2.  (there are well-known bugs though your problem is a misuse of the goto method.)

label that frame and use that label in your goto methods.