Ma perchè non funziona? Movimento elastico:

onClipEvent (load) {
acc = 20;
ine = 1.1;
}
onClipEvent (enterFrame) {
muoviX = (muoviX+(_root._xmouse-this._x)/acc)/ine;
muoviY = (muoviY+(_root._ymouse-this._y)/acc)/ine;
this._x += muoviX;
this._y += muoviY;
}