home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / fierce_fighter.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  320 b   |  15 lines

  1. stop();
  2. Stage.showMenu = false;
  3. _root.onEnterFrame = function()
  4. {
  5.    loaded = _root.getBytesLoaded();
  6.    loadall = _root.getBytesTotal();
  7.    gotoframe = int(loaded / loadall * 100);
  8.    loading.gotoAndStop(gotoframe);
  9.    if(gotoframe == 100)
  10.    {
  11.       delete _root.onEnterFrame;
  12.       nextFrame();
  13.    }
  14. };
  15.