- Flash Action Script: Snow -

눈내리는 효과

프레임에 액션 작성

_root.i = 0;

_root.onEnterFrame = function(){
var mc = _root.snow.duplicateMovieClip("snow"+this.i, this.i);
mc._xscale = mc._yscale = 10+random(60);
mc._y = -10;
mc._x = -50 + random(600);
mc.speedX = -2+random(4);
mc.speedY = 3 + random(2);
mc.onEnterFrame = function(){
this._y = this._y + this.speedY + random(2);
this._x = this._x + this.speedX;
if(this._y > 170){
this.removeMovieClip();
}
};
this.i ++;
};