1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
|
onFrame (100) {
MovieClip.prototype.MoveTo=function(vx:Number,vy:Number,vb:Number){
this.onEnterFrame=function(){
this._x = Math.approach(this._x, vx, vb);
this._yscale = Math.approach(this._yscale, vy, vb);
if(Math.abs(vx - this._x) <= 1 && Math.abs(vy - this._yscale) <= 1){
delete this.onEnterFrame;
this._x = vx;
this._yscale = vy;
}
}
};
//Anwendung
box.MoveTo(00,100,0.9);
}
|