Sirius
04-17-2007, 10:42 AM
I have just transferred a newly-finished site from my testing domain to the clients domain and have discovered an issue with the loading of a movie. The site has a preloader and once this has completed it advances the playhead to a frame labelled site. Here's that code:
factor=_root.getBytesLoaded()/_root.getBytesTotal();
loaded=int(factor*100)+"%";
if (factor>=1) {
_root.gotoAndPlay("site");
}
On the same frame number as the site label is the banner with navigation and an mc called page_mc. 5 frames later there is a new frame label called home with the action
page_mc.loadMovie("home.swf");
This all worked fine in my domain where I was developing & testing the site, but now I have transferred to the clients URL http://www.stormlondon.co.uk/stormnightclub.htm this is no longer working! The banner loads but the home page does not load until you click the button...
This is not a crossdomain issue as far as I am aware and I believe all my paths are correct.
Can anyone suggest a solution please.
factor=_root.getBytesLoaded()/_root.getBytesTotal();
loaded=int(factor*100)+"%";
if (factor>=1) {
_root.gotoAndPlay("site");
}
On the same frame number as the site label is the banner with navigation and an mc called page_mc. 5 frames later there is a new frame label called home with the action
page_mc.loadMovie("home.swf");
This all worked fine in my domain where I was developing & testing the site, but now I have transferred to the clients URL http://www.stormlondon.co.uk/stormnightclub.htm this is no longer working! The banner loads but the home page does not load until you click the button...
This is not a crossdomain issue as far as I am aware and I believe all my paths are correct.
Can anyone suggest a solution please.