- Create a small box usingt he box tool
- Write some text for the button using the text tool
Position the text over the box as desired
select them both by dragging ur mouse over them and press F8 and select "Button" and press ok
Thats your button created - double click it to go into the button timeline, there will be 4 things in there:
- Up:how ur button looks by default
- Over: how your button looks and behaves when the mouse is over it
- Down: how it looks when pressed
- Hit: The area your button becomes active when mouse is placed over it (the hit zone)
Do whatever you need to in there i.e. changing colors for over, adding sound etc etc
After you are done double click somewhere outside the button area on the design window and ull go back to the main time line.
Now click on your button once and from the "Actions" window put in the following code for the button for PREVIOUS frame:
Code:
on (release) {
prevFrame();
}
for NEXT frame create another button and put this code:
Code:
on (release) {
nextFrame();
}
I hope thats what u were asking for?