Para responder a la pregunta de mooguel k inicio el post....
En el primer frame de tu peli.
code-->
MovieClip.prototype.muevetecojones = function(finalValue){
this.onEnterFrame = function(){
this._x += (finalValue - this._x)/4;
}//function
}//muevetecojones
En tu boton
code-->
on(press){
_root.elMcAmover.muevetecojones(Math.round(Stage.w idth/2));
}
Salu2