I have built a site, www.naiarchitecture.com
There is a shell swf (index.swf) that holds the menu, main content, etc.
In the middle (hopefully you see it) are images that go through on a slideshow. They are loaded into a swf called “home.swf”
As you go to other pages, home.swf is replaced by other swfs of the slideshows for that particular section.
home.swf and the other sections’ swf have timers on them to determine how long between the pictures, controls the fades, allows the users to select a photo, and they load the jpg with a simple:
var myMCL = new MovieClipLoader();
myMCL.loadClip("Name.jpg","imageLoader");
In which Name.jpg is the image to be loaded, slideLoader is my empty movieclip into which it is loaded. The swf is loaded into index.swf by the same code, but the movieclip is called “slideLoader.”
It works. Sometimes. Occasionally, the swf will just not load. The preloader will not show up, nothing will happen. If you refresh the page it might show up, or if you go somewhere else it will work, you come back to it again it might, or sometimes it just won’t show at all.
I’ve done numerous sites this exact same way and have never encountered this problem before! Does anyone know what it might be?