home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / Its-a-Gas.swf / scripts / DefineSprite_279 / frame_1 / DoAction.as < prev   
Encoding:
Text File  |  2005-11-10  |  362 b   |  17 lines

  1. function updateTime()
  2. {
  3.    var mins = parseInt((timerLength - this.timer.seconds()) / 60);
  4.    if(mins == 0)
  5.    {
  6.       mins = "00";
  7.    }
  8.    var secs = (timerLength - this.timer.seconds()) % 60;
  9.    if(secs == 0)
  10.    {
  11.       _root.gotoAndStop("end");
  12.       secs = "00";
  13.    }
  14.    this.timeDisplay = mins + ":" + secs;
  15. }
  16. var timerLength = _root.vTime;
  17.