home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / Kung_Fu.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  518 b   |  9 lines

  1. loadPercent = Math.floor(_root.getBytesLoaded() / _root.getBytesTotal() * 100) + "%";
  2. loadBytes = Math.round(_root.getBytesLoaded() / 1024 * 1000) / 1000 + " Kb of " + Math.round(_root.getBytesTotal() / 1024 * 1000) / 1000 + " Kb total Loaded.";
  3. if(_root.getBytesLoaded() == _root.getBytesTotal())
  4. {
  5.    loadPercent = "100%";
  6.    loadBytes = Math.round(_root.getBytesLoaded() / 1024 * 1000) / 1000 + " Kb of " + Math.round(_root.getBytesTotal() / 1024 * 1000) / 1000 + " Kb total Loaded.";
  7.    gotoAndStop(65);
  8. }
  9.