home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 August / Chip_2004-08_cd1.bin / oddech / western / tiroteo.swf / scripts / frame_2 / DoAction.as
Text File  |  2004-06-09  |  560b  |  23 lines

  1. if(_root.getBytesLoaded() >= _root.getBytesTotal())
  2. {
  3.    gotoAndStop("start");
  4.    play();
  5. }
  6. else
  7. {
  8.    loader._xscale = _root.getBytesLoaded() / _root.getBytesTotal() * 100;
  9.    procent = int(loader._xscale);
  10.    if(_root.getBytesTotal() / 4 < _root.getBytesLoaded())
  11.    {
  12.       txtload = "Preparing terrain";
  13.    }
  14.    if(_root.getBytesTotal() / 2 < _root.getBytesLoaded())
  15.    {
  16.       txtload = "FreestyleDesigning enemy";
  17.    }
  18.    if(3 * _root.getBytesTotal() / 4 < _root.getBytesLoaded())
  19.    {
  20.       txtload = "Preparing for combat";
  21.    }
  22. }
  23.