home *** CD-ROM | disk | FTP | other *** search
/ 1&1 Multimedia Trend 1996 11 D / MM_TREND.ISO / prog / isdn / i_transf.dir / 00172.ls < prev    next >
Encoding:
Text File  |  1996-09-16  |  404 b   |  24 lines

  1. on XXBusyWait secs
  2.   set Anz to secs * 60
  3.   set myTicks to the ticks + Anz
  4.   repeat while the ticks < myTicks
  5.     if the mouseDown then
  6.       ChkMouse()
  7.     end if
  8.   end repeat
  9. end
  10.  
  11. on XXSoundWait Track
  12.   repeat while soundBusy(Track)
  13.     if the mouseDown then
  14.       ChkMouse()
  15.     end if
  16.   end repeat
  17. end
  18.  
  19. on YYMovieWait spn
  20.   repeat while the movieRate of sprite spn > 0
  21.     nothing()
  22.   end repeat
  23. end
  24.