超h工口图片大全:请问:谁会用FLASH做飘落的雪花(最好能把.fla文件发过来,谢谢!

来源:百度文库 编辑:查人人中国名人网 时间:2024/04/29 12:53:53

主场景建立一个snow的影片剪辑画一个雪花
AS为:
var i:Number = 1;
_root.onEnterFrame = function() {
if (moving<200) {
duplicateMovieClip(snow, "snow"+i, i);
this["snow"+i]._y = Math.random()*4+1;
this["snow"+i]._x = Math.random()*550;
this["snow"+i]._x+=1
this["snow"+i]._xscale = this["snow"+i]._yscale=Math.random()*70+10;
i++;
}
};