home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / TheBearsAdventure.swf / scripts / frame_4 / DoAction.as
Encoding:
Text File  |  2005-08-04  |  255 b   |  11 lines

  1. var sndBytesLoaded = 0;
  2. var sndBytesTotal = 0;
  3. var i = 0;
  4. while(i < snds.length)
  5. {
  6.    sndBytesLoaded += snds[i].getBytesLoaded();
  7.    sndBytesTotal += snds[i].getBytesTotal();
  8.    i++;
  9. }
  10. snd_load_bar._width = sndBytesLoaded * 200 / sndBytesTotal;
  11.