AS: unloadMovie
To use this you got to have read AS: loadMovie() by Spamburger first.
unloadMovie(level/target)
Introduction
Well, this is used if you have loaded a movie using loadMovie() function above.
I'm not sure if this qualify as a new AS:Thread but I think it will since it helps you :)
Usage
The easiest way is to only target the target the movie lies on.
For example, if you have used
loadMovie("http://www.link.swf", mc);
You can use this to unload it:
unloadMovie(mc);
And if you got the movie on a specific level like this (not covered in the loadMovie()):
loadMovie("http://www.link.swf", 2);
You can use this to unload it:
unloadMovie(2);
Kinda simple, eh?
But I did it so you can stop the movie from loadMovie which is kinda useful.
~GWHC
