我想知道如何动态复制动画片段(运行Tweenlite动画),直到它填满舞台?我们的想法是让雪花在屏幕上生成动画并填满屏幕(白色),并且动画片段会根据舞台区域随机进入x和y位置。
非常感谢!
答案 0 :(得分:0)
var i = 0;
attachMovie("a_snowFlake_mc","a",this.getNextHighestDepth()); //AS linkage reference
onEnterFrame = function(){
duplicateMovieClip("a","ac"+i,this.getNextHighestDepth());
_root["ac"+i]._x = Math.random()*Stage.height;
_root["ac"+i]._y = Math.random()*Stage.width;
i++;
}