home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / arixtetris.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  294 b   |  14 lines

  1. stop();
  2. pourcentageTxt.text = "";
  3. _root.onEnterFrame = function()
  4. {
  5.    sofar = this.getBytesLoaded();
  6.    total = this.getBytesTotal();
  7.    pourcentageTxt.text = Math.floor(sofar / total * 100) + "%";
  8.    if(sofar == total)
  9.    {
  10.       delete _root.onEnterFrame;
  11.       play();
  12.    }
  13. };
  14.