I am having teh same problem

I have a MAIN_mc.swf with a loader component in it called mainLoader

I load other swf's into the load but I want to send them commnad

in HTML_mc.swf there is a function called show HTML

I want to be able to click on a button in MAIN_mc and have ti execute teh function in HTML_mc

kinda like
Code:
Actions.loadHTML = function(docPath){
    loadMovie("HTML_mc.swf",_root.mainLoader);
    _root.mainLoader.showHTML(docPath);
};
should mainLoader inherit teh objects and functions of the swf loaded?