I have an animation with buttons embedded in clip.
When I select a buttons, I want to go to the frame "menu1" in the main (root)
scene.
I write this :
-------------------------------------------------------------
on (press, keyPress "<Enter>" ) {
gotoAndStop("_level0/menu1");
}
-------------------------------------------------------------
or this
------------------------------------------------------------
on (press, keyPress "<Enter>" ) {
gotoAndStop("_level0.menu1");
}
-------------------------------------------------------------
But it's wrong
Can you help me ?