unloading a movie clip
I can load and unload a movie via the "loadClip" and "unloadClip" methods. So far, so good. However, I notice that the movie is not altogether "unloaded".
Some of it continues to run even though the visible movie is gone. I know this because there is an "interval" timer started within the movie and I am seeing the effects of that "thread" (ok, maybe its not a thread but thats what it seems like to me. Process, maybe?). Anyway, even though I have used the unloadClip method to unload the clip, I have a feeling that there is a lot more I should be doing to clean up the mess I have left behind. Seeing the effects of the still-running interval timer, I now have visions of memory leaks not far behind.
So, the question: What must one do to really kill off a movie clip? Make it appear to have never existed within the player? Clean slate?