home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / flag_bricks.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  290 b   |  13 lines

  1. stop();
  2. var preload = setInterval(function()
  3. {
  4.    if(getBytesLoaded() == getBytesTotal())
  5.    {
  6.       gotoAndStop("mainMenu");
  7.       clearInterval(preload);
  8.    }
  9.    var _loc1_ = Math.round(getBytesLoaded() / getBytesTotal() * 100);
  10.    preloader.gotoAndStop(_loc1_);
  11. }
  12. ,16,this);
  13.