home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 July / Chip_2004-07_cd1.bin / tema / sw602 / html / flash / mapa.swf / scripts / frame_2 / DoAction.as
Text File  |  2004-02-19  |  273b  |  16 lines

  1. var b = _root.getBytesLoaded();
  2. var t = _root.getBytesTotal();
  3. if(b > 0 && b <= t)
  4. {
  5.    loading = "Nahr├ív├ín├¡ " + Math.round(100 * b / t) + "%";
  6.    progress._xscale = Math.round(100 * b / t);
  7. }
  8. if(b != t)
  9. {
  10.    gotoAndPlay(1);
  11. }
  12. else
  13. {
  14.    gotoAndStop(4);
  15. }
  16.