home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / DinkySmash.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2005-08-04  |  332 b   |  17 lines

  1. loadingBar.onEnterFrame = function()
  2. {
  3.    var tot = this._parent.getBytesTotal();
  4.    var lod = this._parent.getBytesLoaded();
  5.    if(tot > 0)
  6.    {
  7.       if(lod >= tot)
  8.       {
  9.          this._parent.gotoAndStop("game");
  10.       }
  11.       else
  12.       {
  13.          this.gotoAndStop(Math.ceil(100 / tot * lod));
  14.       }
  15.    }
  16. };
  17.