home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1996 July / WPCJUL96.ISO / file.exe / SHARED.DXR / 01019_Wait.ls < prev    next >
Encoding:
Text File  |  1996-05-15  |  207 b   |  10 lines

  1. on wait length
  2.   global WaitFactor
  3.   if (WaitFactor > 0) and (length > 0) then
  4.     set EndTicks to length * 60 * WaitFactor
  5.     startTimer()
  6.     repeat while the timer < EndTicks
  7.     end repeat
  8.   end if
  9. end
  10.