Hello,
I have a main.swf file that loads a news2.swf file into a holder movieclip. The news2.swf file loads jpegs dynamically from a folder named 'images' in the same directory as the news2.swf file. The directory of my site looks like this, starting at the root:
index.html
main.swf
news_swfs/news2/news2.swf

I am trying to make it work so that I can create additional news.swf files (news3.swf, news4.swf...) in their own folders, inside of the news_swf folder, each with their own 'images' folders. So inside the news_swfs folder would look like this:
news2/
news3/
news4/

And inside each news folder would look like this:
news2.swf
images/

The problem I am having is that when I use loadmovie, it loads from the main.swf directory, not relative to the news2.swf file. So it looks like I would need to manually direct each newsX.swf file to the newsX.folder. Is there any easier way to make the news.swf file look in the local folder relative to itself rather than the main.swf file? In the news2.swf file, I have tried using without success:
lockroot = true;

Basically, I am trying to avoid pointing each news.swf file to a specific images folder, rather just use the images folder in the same directory as the loaded mc.

Any help would be much appreciated!