Skip to content

Instantly share code, notes, and snippets.

@iamkristian
Created June 18, 2009 10:49
Show Gist options
  • Save iamkristian/131844 to your computer and use it in GitHub Desktop.
Save iamkristian/131844 to your computer and use it in GitHub Desktop.
siteLoader.loadMovie("mysite.swf");
loadingBar._xscale = 1;
loadingBar.onEnterFrame = function() {
kBytesLoaded = this._parent.siteLoader.getBytesLoaded() / 1024;
kBytesTotal = this._parent.siteLoader.getBytesTotal() / 1024;
percentage = Math.round(kBytesLoaded / kBytesTotal * 100);
this._xscale = percentage;
if (percentage == 99) {
delete this.onEnterFrame;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment