Page is a not externally linkable
Walley - 4:07 pm on Aug 26, 2009 (gmt 0)
After I close my browser and go back to the site, the preloader just stops at 0% and does not play. I'm thinking I have to do something like this: or That just gives me errors. This is my first time attempting AS3.
When I first visit the site for the first time the preloader works perfect and plays the movie.
stop();
//Preloader
loaderInfo.addEventListener(ProgressEvent.PROGRESS, updatePreloader);
function updatePreloader(evtObj:ProgressEvent):void {
//Container for the progress of the site (download)
var percent:Number = Math.floor((evtObj.bytesLoaded*100)/evtObj.bytesTotal);
preloader.text = percent+"%";
if (percent==100) {
play();
}
}
if (bytesLoaded == bytesTotal) {
play();
}
if (percent==100) {
play();
}
else {
play();
}