Незнаю, правильно ли я понял задачу. Вот что у меня получилось!

Код AS1/AS2:
mc = attachMovie("mc","mc",1)
mc._x = mc.bx = 500;
mc._y = mc.by = 300
mc.dx = 0
mc.dy = mc._y
mc._xspeed = 1
mc._yspeed = 0
flag = true;
mc.onEnterFrame = function(){
if(flag){
var x = this.dx-this.bx;
var y = this.dy-this.by;
var angle4:Number = Math.atan2(y, x);
this.xmov = this._xspeed*Math.cos(angle4);
this.ymov = this._yspeed*Math.sin(angle4);
this._x+= this.xmov;
this._y+= this.ymov;
}
}
mc.onPress = function(){
this.startDrag();
flag = false;
this.bx = this._x;
this.by = this._y;
}
mc.onRelease = function(){
flag = true;
this.stopDrag();
this._xspeed = 1;
this._yspeed = 1;
this.dx = this._x;
this.dy = this._y;
}
где mc - MovieClip
Замедление не стал делать.