Loading external swf into main from another external swf

I am trying to load external two.swf into the main.swf FROM external one.swf. If this makes any sense, can someone please explain to me how I can do this? Thanks!

in a button in externalone.swf, put an action like:
[AS]
on(press){
_root.container.loadMovie(“externaltwo.swf”);
}
[/AS]
When you use _root.command, it’s going to go to the main movie’s timeline (main.swf), automatically unload what is in the movieClip ‘container’ and load in the new one. That should work.

how can I make it go to the timeline of a mc rather than the main timeline?

on(press){
_root.mcname.loadMovie(“externalmovie.swf”);
}

should work you just got to target it into the movieclip you want it to load into