Can't load external swf into an external swf

hi,

I’m trying to load an external swf into a swf that has also been loaded into another movie.

//To load the 1st swf:
_root.section = “swf/content_home.swf”;
loadMovie(_root.section, _root.content);

//then once that is loaded i want to load this external swf into swf/content_home.swf

loadMovie(“http://mysite.com/swf/swf_portfolio/22.swf”, _root.portfolio_load_mc);

_root.portfolio_load_mc is a movie clip inside content_home.swf

Do i have to use loadMovieNum or am I referencing the second external swf wrong.

thanks :eye: