How to remove an externally loaded swf?

Hi out there. Im trying to unload an external swf, but it doesnt seem to be working the way im doing it. I tried to use unloadmovie, but it removed the whole movie. I used the file name and it still did not work.

here is the code on the button:

//loads client list
_root.contents.loadMovie("company/companyClientList.swf");

	
//closes other rollout (but not swf!)
_root.aboutNav_mc.people_mc.gotoAndStop(1);

}

here is the previous button containing the two swf files I am trying to get rid of:

on (press) {
_root.contents.loadMovie (“people/peopleJerry.swf”);
_root.text.loadMovie(“people/textJerry.swf”);

}

I can send the link to what is happening if that makes it clearer.
thank you!!
:rabbit:

Basically:

//to load
on (press) {
	_root.contents.loadMovie("yourswf.swf");
}
//to unload
on (press) {
	_root.contents.unloadMovie();
}

Hope this helps:)

scotty(-: