does unloadMovie unload mc's that are done loading?
I am loading a number of swf's into empty movie clips. They are quite large. If the user wants to abort this Flash Movie (playing within a browser) I want to clean up by unloading all the movies. Will my unload function (below) kill all movie clips even if they have not completely loaded?
Thanks in advance!
var iPageStart = 0;
for(var i = _root.iPageStart; i < n; i++) {
mc = _root.createEmptyMovieClip("movie" + i, i);
mc._x = 0;
mc._y = 102;
mc.loadMovie("oronite-scrollText-" + i + ".swf");
}
//fired from an exit button
function unloadAll(){
iPageStart = 0;
for(var i = _root.iPageStart; i < n; i++) {
_root["movie"+i].unloadMovie();
}
return true;
}