Para el ejemplo le puse al MClip nombre de instancia "mc". Ahora copia este código en el 1 frame de tu movie principal
Código:
stop();
mc.onMouseDown=function(){
this.onEnterFrame=function() {
this._x=_root._xmouse;
this._y=_root._ymouse;
posX=this._x;
posY=this._y;
};
};
mc.onMouseUp=function(){
this._x=posX;
this._y=posY;
delete this.onEnterFrame;
};
Funciona