Hi,

I have a problem with an image that gets larger onRollOver and then goes back to its standard size with onRollOut. It works just fine if the mouse goes slow enough. However, if the mouse goes quickly it just gets stuck at a certain frame (frame 20). Does anyone know how I can fix this?

Here is the code on frame 1:

stop();



top_image.onRollOver=function() {
gotoAndPlay(2);
}
top_image.onRollOut=function() {
gotoAndPlay(20);
}

Much appreciated!