Kirupalab - particles

i’ve tried the particles effect in kirupa lab…
but how do i make them dissapear if i dont need them?
the particles still there even though the frame is empty

Hi,

Try removeMovieClip().

I used this in the main timeline of one of my movies to remove the snow:

//Remove Snow
do {
removeMovieClip("_root.snow"+k);
k–;
} while (k != 0);

t