Flash Question
Flash Question
- Started
- Last post
- 3 Responses
- normal
Here is a quickie, is it possible to have a non-main timeline movie unload itself?
I've tried it a couple of different ways to no avail.
unloadMovie("this.swf");
this.unloadMovie();
_root.unloadMovie("this.swf", "location");
Kind've stuck. If you can't I'll find a workaround. Thanks.
- londonBoy0
removeMovieClip(this);
- sumogray0
you unload the clip, not the swf.. ie unloadMovie(target_mc); not "this.swf"
- normal0
That works like a charm londonBoy, thanks.