home *** CD-ROM | disk | FTP | other *** search
/ Enter 2003: The Beautiful Scenery / enter-parhaat-2003.iso / files / Sketchy.exe / Sled.dcr / 00114_p_timer.ls < prev    next >
Encoding:
Text File  |  2002-12-31  |  309 b   |  23 lines

  1. property pCurrentTime, pStartTime, pMyTime
  2.  
  3. on new me
  4.   return me
  5. end
  6.  
  7. on resetTimer me
  8.   pCurrentTime = 0
  9. end
  10.  
  11. on runTimer me
  12.   pStartTime = the ticks
  13. end
  14.  
  15. on stopTimer me
  16.   pCurrentTime = the ticks - pStartTime
  17. end
  18.  
  19. on reportTimer me
  20.   pCurrentTime = the ticks - pStartTime
  21.   return pCurrentTime / 60.0
  22. end
  23.