home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / coki.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  280 b   |  15 lines

  1. mcLoad.onEnterFrame = function()
  2. {
  3.    gLoad = Math.floor(_root.getBytesLoaded() / _root.getBytesTotal() * 100);
  4.    if(gLoad >= 100)
  5.    {
  6.       _root.gotoAndPlay("opening");
  7.    }
  8.    else
  9.    {
  10.       this.t = gLoad + "%";
  11.       this.gotoAndStop(gLoad);
  12.    }
  13. };
  14. stop();
  15.