Actionscript stop(); issue

[COLOR=“Red”]This issue has been resolved.[/COLOR]

I have a turtle strolling across the stage. (http://heckhouse.com/turtle.htm) The first time you mouse over him, he does exactly what I want. He stops moving and goes to the hiding position. But if you try to roll over him again, he’ll hide, but he keeps sliding across the stage. Here is the code on the moveclip:

on (rollOver) {
this.turtle.gotoAndPlay(1); <-- This is the hiding animation
}
on (rollOver) {
this.stop();
}

And here is the code on the last frame of the hiding moveclip:

this.gotoAndPlay(1)
onEnterFrame = function() {
this._parent.play();
}

I’m assuming the problem is that it’s wanting to finish out the motion tween before it stops again… Is there any way to fix this?