I am using the loader class to load an swf into a container. That seems pretty basic, but it’s creating this huge memory usage in the browser. In other words, my swfs are not getting unloaded. And, the more that load, the bigger the memory usage gets. It’s my understanding that I need to get rid of the loader, remove child, and null it. But, I can’t seem to figure this out. Any help is greatly appreciated.
// load Home Movie into container on stage
var loader:Loader = new Loader();
var request:URLRequest = new URLRequest(nextMovie + “.swf”);
loader.load(request);
container.addChild(loader);
btn1.gotoAndStop(“on”);
// this function is called at the closing of the clip that is active. it is called from the timeline of the active clip, it’s last frame.
function movieLoad(){
var loader:Loader = new Loader();
var request:URLRequest = new URLRequest(nextMovie + “.swf”);
loader.load(request);
container.addChild(loader);
}