Hello
I have a "snow movie clip" playing in my .swf, but removing the clip on a certain frame doesnt stop it from playing. I need to either remove it or hide it using as2. Any help would be gratefully recieved.
thanks
Printable View
Hello
I have a "snow movie clip" playing in my .swf, but removing the clip on a certain frame doesnt stop it from playing. I need to either remove it or hide it using as2. Any help would be gratefully recieved.
thanks
snow.removeMovieClip()
will get rid of it.
if you want it to stop playing use
snow.stop()
if you want it to just be invisible you can use
snow._visible = false
hopefully you can get one of those to work for you. :]