MovieClip.prototype.moveXYR = function(xValue, yValue, hValue, wValue) {
this.onEnterFrame = function() {
var v5 = xValue-this._x;
this._x += v5*0.3;
var v3 = yValue-this._y;
this._y += v3*0.3;
var v4 = hValue-this._height;
this._height += v4*0.3;
var v2 = wValue-this._width;
this._width += v2*0.3;
if (Math.abs(v3)<0.3 && Math.abs(v5)<0.3 && Math.abs(v4)<0.3 && Math.abs(v2)<0.3) {
this.onEnterFrame = null;
}
};
};
MovieClip.prototype.moveXY = function(xValue, yValue) {
this.onEnterFrame = function() {
var v3 = xValue-this._x;
this._x += v3*0.15;
var v2 = yValue-this._y;
this._y += v2*0.15;
if (Math.abs(v2)<0.15 && Math.abs(v3)<0.15) {
this.onEnterFrame = null;
}
};
};