Unload(); is NOT working

I’m trying to unload a loaded external .swf from a main.swf. I’ve read all the related threads but none seam to work for me.

What I’m doing seems pretty simple:
One button loads an external .swf. into the main.swf. This works fine.
Another button removes it. This is not working!

Here’s my code:

[COLOR=“red”]//This button loads an external .swf and works fine[/COLOR]
mainNav.uidesign_btn.addEventListener(MouseEvent.CLICK, uiDesign, false, 0, true);
function uiDesign(evt:MouseEvent):void {
//this loads external swf
var request:URLRequest = new URLRequest(“ui.swf”);
var loader:Loader = new Loader();
loader.load(request);
loader.x = 31;
loader.y = 78;
addChild(loader);
//–end–this loads external swf
}

[COLOR=“red”]//This is the button that SHOULD remove the .swf but does not work!![/COLOR]
mainNav.home_btn.addEventListener(MouseEvent.CLICK, home, false, 0, true);
function home(evt:MouseEvent):void {

loader.unload()
removeChild( loader )

}

Someone PLEASE help me as I’ve spend most of today trying to figure this out.

Thank you all so much!!