Есть код для перемещения мувика в точку нажатия мыши... Подскажите пожалуйста как сделать так, что бы при нажатии на определенную точку на картинке, эта точка с картинкой перемещалась в центр....

Код:
speed = 3;
_m = _root.createEmptyMovieClip ("pnt", 2);
_m.attachMovie ("pnt", "pnt", 200);
someListener = new Object ();
someListener.onMouseDown = function () {
_m.endx = _xmouse;
_m.endy = _ymouse;
_m.onEnterFrame = _m.enterFrame;
};
Mouse.addListener (someListener);
_m.enterFrame = function () {
this.cx++;
if (Math.abs(this._x-this.endx)<1&&Math.abs(this._y-this.endy)<1) {
this._x = this.endx;
this._y = this.endy;
delete this.onEnterFrame;
}
this._x += (this.endx-this._x)/speed;
this._y += (this.endy-this._y)/speed;
};
Mouse.addListener(this);