Prova a mettere sul primo frame del tuo mc il codice:

this.onEnterFrame=function(){
with(this){
//y = _root._ymouse;
//x = _root._xmouse;
x = 400;
y = 400;


distanza_x = x-_x;
distanza_y = y-_y;

vai_x = distanza_x/5;
vai_y = distanza_y/5;

c_x = _x+vai_x;
c_y = _y+vai_y;

_x = c_x;
_y = c_y;
}
}