os envio el codigo que tiene cada MC (cambia solo la profundidad)
orig_x=this._x;
orig_y=this._y;
profundidad= 150;
//this.swapDepths (profundidad);//para que se no se crucen
onEnterFrame = function (){
dest_x= (((210 - _root._xmouse) / 210) * profundidad) + orig_x;
dest_y= (((130 - _root._ymouse) / 130) * profundidad) + orig_y;
incr_x = ( dest_x - this._x ) /10;
incr_y = ( dest_x - this._y ) /10;
this._x+=incr_x;
this._y+=incr_y;
}