home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / pandawars.swf / scripts / DefineSprite_7 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  291 b   |  13 lines

  1. this.onEnterFrame = function()
  2. {
  3.    total = _parent.getBytesTotal();
  4.    loaded = _parent.getBytesLoaded();
  5.    l_percent = Math.round(loaded / total * 100);
  6.    l_bar._xscale = l_percent;
  7.    _parent.stop();
  8.    if(l_percent == 100)
  9.    {
  10.       _parent.gotoAndPlay("saisho");
  11.    }
  12. };
  13.