flash buttons in down state
flash buttons in down state
Out of context: Reply #8
- Started
- Last post
- 8 Responses
- majman0
instead of the for loop, I would do what MR_T said.
but in order to make the buttons return to their original state, define some sort of active btn variable, such as:
on(press){
_root.active.prevFrame();
_root.active = _name;
nextFrame();
}so you're telling the previously active button to go to the first frame, and then you define the active button as the one just clicked, and then you send it to the next frame....
good luck