i am working on an adobe flash project and i want the code that trasfer me from scene one to scene 2 when clicking on a button on scene 1

i appreciate a quick answer

Thanks, Asmaa

link|improve this question
Try to avoid scenes. It can cause lots of troubles (help.adobe.com/en_US/Flash/10.0_UsingFlash/…). – Rytis Alekna Apr 10 at 15:23
feedback

1 Answer

Are you familiar with gotoAndPlay(frameNumber); It is extended with gotoAndPlay(frameNumber, sceneName);

So if your scene is called Scene 2 then in as3 typ:

gotoAndPlay(1, "Scene 2");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.