| Message |
以下のアクションスクリプト2をアクションスクリプト1に落としたいのですが、 どこが悪いのかさっぱりわかりません。
助けてください。
var i:Number = 0; this._alpha = 70; // this._rotation = -60; this.onEnterFrame = function():Void { i++; this._rotation -= 2.5; if (i<110) { this._xscale = this._yscale -= .5; this._x += .15; this._y += .25; }
if (_parent._currentframe > 225) { if (this._y < 95){ delete onEnterFrame; }else{ this._xscale = this._yscale -= .2; this._x += .5; this._y -= 4; } } }; |