Problem with Paths and createEmptyMovieClip

Hello Everyone,

I am making a site using flash, and am stumped. Have been for the past day. Hours have been spent trying to figure out what I am doing wrong.

Here is what I’ve done:

a) I have a main movie. On the top is the header/navbar. On the bottom is the footer. Between both of these, I have my external movies loaded. These all work fine. I have them loaded using the following 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;
}

c) As already said, my movies load correctly into the correct location. However, one of the movies I have to load is the client’s portfolio. I then want to create another empty movie clip to have the contents of the portfolio displayed. The code below is on the timeline, and serves to load the instructions. Following instructions will have users select options to have the client’s portfolio loaded in the same clip as the instructions appear. Having said this, I am having a terrible time getting the path to work. If someone could modify my code, I would be very grateful. Here is the code I’ve developed.

_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 

The site can be viewed at [COLOR=#800080]http://www.modainteriordesign.ca[/COLOR]

If you wouldn’t mind downloading a .rar of what I’ve done, you may at [COLOR=#800080]http://www.modainteriordesign.ca/help[/COLOR]

I would love it if someone could help me get this to work.

Thanks for your time,

Greg
[email protected]