home *** CD-ROM | disk | FTP | other *** search
/ 1&1 Multimedia Trend 1996 10 B / MM_TREND.ISO / prog / isdn / isdnpc.dir / 00237_Script_237 < prev    next >
Text File  |  1996-08-18  |  662b  |  31 lines

  1. on XXBusyWait secs
  2.   -- erlaubt interaction wèhrend des wartens
  3.   
  4.   set anz = secs * 60
  5.   set myTicks = the ticks + Anz
  6.   repeat while (the ticks < myTicks)
  7.     --CheckNaviRollover
  8.     if the mouseDown then ChkMouse 
  9.   end repeat
  10. end
  11.  
  12.  
  13. -- *************************************************
  14.  
  15. on XXSoundWait Track
  16.   -- erlaubt interaction wèhrend des wartens
  17.   
  18.   repeat while soundBusy (Track)
  19.     --CheckNaviRollover
  20.     if the mouseDown then ChkMouse 
  21.   end repeat
  22. end 
  23.  
  24.  
  25. --************************************************************
  26.  
  27. on YYMovieWait spn
  28.   repeat while the movierate of sprite spn >0
  29.     nothing
  30.   end repeat
  31.   end