Hey everyone,
I have a movie where I've used the following createEmptyMovieClip to make a clip where an external movie is loaded. I've gotton it to work with

Code:
//Projects Button - loads the Projects SWF file into the main time line.
function openProjects() {
_root.createEmptyMovieClip("siteContentPage_mc",_root.getNextHighestDepth());
_root.siteContentPage_mc.loadMovie("../projects/Projects.swf");
_root.siteContentPage_mc._y=68;
_root.siteContentPage_mc._x=0;
}
Now inside this movie that is loaded successfully, I want to have another "createEmptyMovieClip" commmant to load another external movie. I am having trouble with the path. Here is what I've got...it looks good to me...but it doesn't work.

Code:
_root.siteContentPage_mc.createEmptyMovieClip("LoadedPortfolio_mc",_root.siteContentPage_mc.getNextHighestDepth());
_root.siteContentPage_mc.LoadedPortfolio_mc.loadMovie("instructions/Instructions.swf");
_root.siteContentPage_mc.LoadedPortfolio_mc._y=17; 
_root.siteContentPage_mc.LoadedPortfolio_mc._x=135
Any help is appreciated.

The site can be viewed at http://www.modainteriordesign.ca

If you wouldn't mind downloading a .rar of what I've done, you may at http://www.modainteriordesign.ca/help

Thanks for your time,

Greg