Answer the question
In order to leave comments, you need to log in
How to make a snow mask in ActionScript 2?
Hello, there is a script that generates snowflakes:
for(i=0; i<1000; i++)
{
var t:MovieClip = snow_mc.duplicateMovieClip("snow"+i,i);
t._x = random(750);
t._y = random(550);
t._xscale = t._yscale = random(80)+20;
t.gotoAndPlay(Math.round(random(81)+1));
}
_root.setMask(mask_mc);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question