LoadMovie question
I have an flv player inside an swf (call it sub1.swf) the flv player has xml files that need to be in the same folder in order to work. I use a main swf to call the flv player that is inside the sub1.swf with loadMovie this works fine as the path is (in main.swf) loadMovie("sub.swf",1);
My problem is I have 8 other sub swf pages with 1 flv player in each and I cannot put these sub .swfs in the same folder as sub 1 because the xml files all have the same names and this will cause none of them to work. My only other idea is to put each sub.swf with xml and flv player files in its own folder so I have 9 folders with 9 separate sub.swfs. So the path is
(in main.swf)
loadMovie("folder1/sub1.swf",1);
loadMovie("folder2/sub2.swf",1);
loadMovie("folder3/sub3.swf",1);
This does not work,there has to be another way to do this.
anybody?
