Stop The Snow

I used the tuttorial on maing snow in a project. It works great on the scene that the animation is on. My problem is the snow doesn’t stop when the movie moves on to the next scene. Any ideas how I can get the snow to play for just that one scene and then stop when it moves on to the next scene.

Ermmmm…can’t really tell unless we see the .fla file. Why not u upload your fla file. We’ll see what we can do about it.

Oh here’s the .fla

Ok. Use a for loop to remove your movieclip. The code below should work:

for (k=0; k<250; k++) {
removeMovieClip(“snow” + k);
}

Great! I tried something very similar but didn’t have the “for” part correct.