I were making a button in a movieclip, and in the movieclip i made different animations from the button.
On frame 1 it has the normal button
On frame 10 it gets a other colour
On frame 11 - 15 it has an animation
I also used a dummybutton on the stage, so i can put the following script:
on (release) {
gotoAndPlay(11);
}
on (rollOver) {
gotoAndPlay(10);
}
on (rollOut) {
gotoAndPlay(1);
}
My problems is if u once click on the button, the button goes back to frame 1 to the normal button, because of:
on (rollOut) {
gotoAndPlay(1);
}
But i want that the animation ends till frame 15. Can someone help me? or give me a script for it?