I apologize if someone’s already posted about this issue.
I’m fairly new to utilizing the loadmovienum(); feature of Flash, and I thought I had it all figured out until I uploaded the files to my hosting.
I have different swf files to be loaded to the 7th level of my project. In Test Movie mode, it works great. I uploaded the main swf files as well as the swf files to be loaded into this file into the same directory of my hosting. Once I pull up my site, however, nothing happens when I click on the links (that are supposed to pull up the other swf files). I tested to see if it was an issue with the levels (maybe that the file, when uploaded, recognized an extra layer, or something), so I tested with level 13 (my top layer).
My code is very simple:
on(release) {
loadMovieNum(“running.swf”, “7”, “POST”);
}
And inside each swf file, there’s a button with:
on(release) {
unloadMovieNum(“7”)
}
I’ve double checked that the other swf files are present, and I’ve re-uploaded my main swf file. I also found a post in this forum mentioning problems with the kind of browser used, so I tested with Safari, Firefox, and IE, but none of them work.
So I suppose my question is, are there limitations from some hosting providers that don’t allow loadmovienum to function, or is there something that I’m overlooking? This is boggling my little head that it works fine testing, but not when uploaded.
~Sam