Flash rollover question?
Flash rollover question?
- Started
- Last post
- 2 Responses
- tactikal2
Hey. The buttons in my main navigation trigger a overimg movie clip when you rollover them --
on (rollOver) {
btnOver.gotoAndPlay("over");
}on (rollOut) {
btnOver.nextFrame();
}Unfortunately when you roll from button to button too rapidly sometimes the roll-out animation gets stuck.
Does anybody have any suggestions on how to do this in a more effective way?
- tactikal20
Nevermind... I figured it out... I'm stupid.
- nospacebar0
You can actually set up frame labels, and as long as you have a mouse event handler on a movieclip, it'll go to the pertaining frame.
ie:
_up _over _down _hitTry it!