Sul MC metti:

onClipEvent (load) {
nx = this._x;
ny = this._y;
vel = .2;
}
onClipEvent (enterFrame) {
this._x += (nx-this._x)*vel;
this._y += (ny-this._y)*vel;
}


modificando il valore di "vel" modifichi la velocità


sul pulsante:

on (release) {
mc.nx = 200;
mc.ny = 150;
}

dove nx e ny sono le nuove cooridnate del MC