no se si esto este bien lo hecho muy por arriba pero espero que te sirva
Código PHP:
function Mover(x, y, aceleracion) {
var PosIniX=_root.show.foto.x
var PosIniY=_root.show.foto.y
_root.show.foto.onEnterFrame = function() {
this._x += (x-this._x)/aceleracion;
this._y += (y-this._y)/aceleracion;
if (Math.abs(x-this._x)<0.5 && Math.abs(y-this._y)<0.5) {
this._x = PosIniX;
this._y = PosIniY;
delete this.onEnterFrame;
}
};
}