Flash unload problem - memory issue

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);
}

i met the same problem, and still can’t find a solution.
as3 it’s hard

I had the same problem, this might help

Has anyone found a solution as of yet? I’ve tried the solutions listed on the link in the prev post with no luck.

Nowhere in your code are you deleting references to the previous object? How do you expect it to get unloaded?