Do You have preloader on this site?
If You have... Maybe tere is something wrong with action scropt in it...
Don't use ifFrameLoaded function, because it doesn't work well...
Try with this one...
onClipEvent (enterFrame){
mctotal = _root.getBytesTotal();
mcloaded = _root.getBytesLoaded();
mcpercent = Math.round((mcloaded / mctotal) * 100);
sto = mcpercent + "%" ;
progress_mc._xscale = mcpercent;
if (mcpercent == 100) {
_root.play(1);
}
}
"sto" - variable name of text field to display the %%%
"progress_mc" - is the instance name of the loader stripe...
set it's width to 100 and scale to 1% width.... for start.
Another possible reason... the photos on your site weight to much... You should optymalize the photos or graphic in PS or Fireworks... use jpg for photos and png if You need transparency...
If it is dynamic site, everything is in motion... don't do de animations frame by frame... use motion tween...
Default frame rate is 12... make it 24...
Try to use the some elements from the flash library in different configurations... for example... if You have an arrow in your library and You need to build a square... put two arrows together and create the new mc.
When You build the gallery... don't import the thumbnails... use mask property and scale the photos (but only 50%)
Have fun
Marcin