home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / gotham_dark_night.swf / scripts / frame_4 / DoAction.as
Encoding:
Text File  |  2008-09-08  |  269 b   |  11 lines

  1. if(_root.getBytesLoaded() == _root.getBytesTotal())
  2. {
  3.    _root.gotoAndStop("loaded");
  4. }
  5. else
  6. {
  7.    percent = Math.round(100 * (_root.getBytesLoaded() / _root.getBytesTotal()));
  8.    _root.texte.text = _root.mc_percent;
  9.    _root.mcPercent.gotoAndStop(percent);
  10. }
  11.