|
This I can help with. Assuming your using Actionscript 3.0
Create 2 layers name top one actions and the bottom one buttons.
For the buttons, we are going to use the Button Component. To get an instance of the Button Component go Window --> Components to open up the Components Panel. Look under the User Interface category to find the Button Component and simply drag it onto stage.
Give it an instance name of test_btn and a lable Test.
Give a frame the label Test.
Now back on the frame with the button click the actions layer, add this to the actionscript;
| CODE | stop();
function goTest (e:MouseEvent):void{ gotoAndStop("Test"); } test_btn.addEventListener(MouseEvent.CLICK, goTest);
|
and it should all work. Let me know. ^^
|