Move a MC with constant speed and change it to ease in

Hi!

How do I do this?

I want to move a mc with constant speed until it reaches a certain x/y value then it slows down and stop. All in as of course.

set up a framed loop.

frame 1
gotoX=10;
gotoY=10;

frame 2

// nothing

frame 3
// here check if x and y of movieclip are not equal to the gotoX and gotoY
// then subtract/add 5 pixels conditionally.
//then gotoAndPlay(2);

MovieClip.prototype.checkr = function(tx, ty, speed) {
this.frams = 0;
this.speed = speed;
this.tx = tx;
this.ty = ty;
this.vx = (this.tx-this._x)/this.speed;
this.vy = (this.ty-this._y)/this.speed;
this.onEnterFrame = move;
};
function move() {
trace(“2”);
this._x += this.vx;
this._y += this.vy;
this.frams++;
if (this.frams>=this.speed) {
this.vx *= .95;
this.vy *= .95;
if (this.vx<.1 && this.vy<.1) {
delete this.onEnterFrame;
}
}
}

//example of use, movieclip instance name mc
mc.checkr(400, 200, 80);

Works perfect!

Thank you so much!

Tony Bolero