URGENT Help for newbie needed: Having trouble with movieclips as buttons

I’ve got a root movie clip called index that loads movieclip called all_animation.

Inside all_animation there are 4movieclips that I’m using as buttons.

Inside each button, there are 3 layers. actions layer has stop() on the frames after/at the end of a tween to move the buttons on the stage. But after you take the mouse away. The button stays where its supposed to.

But when you you bring the mouse back, it loops round back to the original position. I want it to stay where it was at the end of the tween. Really frustrated cant figure out how to stop it permanently. I put in a trace() msg, and its definately looping round.

Really would appreciate your help

Here’s the code

stop();

this.leftleg_btnmc.onRelease = function(){
leftleg_btnmc.gotoAndPlay("_over");
this.leftleg_btnmc.onRollOut=function(){
leftleg_btnmc.gotoAndStop("_out");
}
}

this.leftwing_btnmc.onRelease = function(){
leftwing_btnmc.gotoAndPlay("_over");
this.leftwing_btnmc.onRollOut=function(){
leftwing_btnmc.gotoAndStop("_out");
}
}

this.rightwing_btnmc.onRelease = function(){
rightwing_btnmc.gotoAndPlay("_over");
this.rightwing_btnmc.onRollOut=function(){
rightwing_btnmc.gotoAndStop("_out");
}
}

this.rightleg_btnmc.onRelease = function(){
rightleg_btnmc.gotoAndPlay("_over");
this.rightleg_btnmc.onRollOut=function(){
rightleg_btnmc.gotoAndStop("_out");
}
}