home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / bermuda_triangle.swf / scripts / DefineSprite_52 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-07-26  |  214 b   |  9 lines

  1. onEnterFrame = function()
  2. {
  3.    percent = _root.getBytesLoaded() / total;
  4.    percent = int(percent * 100);
  5.    displayPercent = percent + "%";
  6.    meter.gotoAndStop(percent);
  7. };
  8. total = _root.getBytesTotal();
  9.