Will not stop!

Can anyone help me?

I have been trying to make this ball spin when the mouse goes over it but stop when the mouse comes off it. It works ok if you go slow, but if you move it any faster it just starts and wont stop!

Any help or advice would be great.

well, if you were starting from scratch i’d say try putting your animation into a MC and then just having one button to send commands targeting that MC (which has instance name soccerball). like this…

[AS]on(rollOver){
soccerball.gotoAndPlay(2);
}

on(rollOut){
soccerball.gotoAndStop(1);
}[/AS]

but since you already have some of it done, i’d first try using white to fill in the blank spaces (which seem white b/c there’s a white background).