I have a site at www.asylumartists.com , and when you enter the site, it says its loading 23 files. Inside my site swf there is around 12 videos on the main timeline, and each of them are flv components. Also my external swf files are being preloaded with:
var loader:Loader = new Loader();
var request:URLRequest = new URLRequest(“airmiles.swf”);
loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, function(event:ProgressEvent):void {
Tweener.addTween(MovieClip(parent.parent).texter, {alpha:1, time:0.2, visible:true});
Tweener.addTween(MovieClip(parent.parent).bar_mc2, {alpha:1, time:0.2, visible:true});
var perc:Number = event.bytesLoaded / event.bytesTotal;
MovieClip(parent.parent).bar_mc2.scaleX = perc;
MovieClip(parent.parent).texter.txt.text = Math.ceil(perc*100).toString();
});
If you go to the work section and check out a work, it doesn’t start to preload right away. This leads me to believe that the content is having trouble starting because its trying to load so many files. Does anyone know a code that stops all loading at a certain frame? Once my site loads, it just stops all cache entrees, and when you select a work it preloads as it should?
I really appreciate any help. Thanks Everyone.
-Scott