I’ve came across this problem several times and it drives me crazy. I’ve got an animated button that I use a movie clip for. The code is something like this:
on (rollOver) {
_root.button_animation.gotoAndPlay(2);
}
on (rollOut) {
_root.button_animation.gotoAndPlay(10);
}
The problem is that if a user rolls over and out really fast, flash somethimes won’t register the rollOut.
I even created an invisible button that’s like a border around the movie that tells everything to go back to its original state but sometimes this doesn’t register either.
Is this a known bug with Flash? Anyone know a way around it?