I’m having Problems loading external swfs.
In the main folder where my index file resides, I have online.htm. Online.htm has a flash file (thumbnails.swf) that resides in a folder titled video.
In the video folder, there are swfs that are loaded into thumbnail.swf
If I open up thumbnail.swf by itself, it loads the swfs just fine.
When I had online.htm in the video folder, it worked as well. I am not able to keep the htm file in the folder, it must reside in the root directory because of a secure login I am using.
When online.htm is in the root directory, the thumbnail.swf file shows up, but the buttons stop working.
Here is the code that is on the buttons:
on (press) {
loadMovie("15.swf","_level1");
}
Like I said, that code works fine when I open up thumbnails.swf by itsself, its broken when I have thumbnails.swf embedded in html and I move the html file outside of the video directory.
I had thought I had a workaround. I had a redirect that was protected by the login, and then it would redirect to the online.htm when it was in the video folder. It sort of worked, but not perfectly.
Is there something I can do to the code to make it work perfectly, or is there no hope for this to work, and I have to find some other login script?