home *** CD-ROM | disk | FTP | other *** search
/ Car Screensaver - Toyota / TOYOTA.iso / mjparty / no1_demo / dnorp00.dxr / script_22.ls < prev    next >
Encoding:
Text File  |  1996-10-31  |  344 b   |  24 lines

  1. on exitFrame
  2.   repeat while soundBusy(1)
  3.     if the timer > 5 then
  4.       movehs()
  5.     end if
  6.     if the mouseDown then
  7.       exith()
  8.     end if
  9.   end repeat
  10. end
  11.  
  12. on movehs
  13.   global gtime1
  14.   if gtime1 = 24 then
  15.     set gtime1 to 1
  16.   else
  17.     set gtime1 to gtime1 + 1
  18.   end if
  19.   if (gtime1 mod 12) = 0 then
  20.     curh()
  21.   end if
  22.   startTimer()
  23. end
  24.