home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazine 28 Bonus / CDRomMagazine-SoftKey-ArtPassion-FrenchVersion-Win31Mac.bin / data / lfpplay.dir / 00162_Script_162 < prev    next >
Text File  |  1996-06-11  |  742b  |  33 lines

  1. on setNextSection frameName, movieName -- call this routine when entering a section
  2.   global nextSection 
  3.   put "go frame " & quote & frameName & quote into nextSection
  4.   if movieName <> the movie then 
  5.     put " of movie " & quote & movieName & quote after nextSection 
  6.   end if
  7. end
  8.  
  9.  
  10. on ResetTimeOut
  11.   set the timeOutLapsed to 0
  12.   set the timeOutLength to 60*45 -- 45 seconds
  13. end
  14.  
  15. on TimeOutOn
  16.   resetTimeOut
  17.   set the timeOutMouse to true
  18.   set the timeOutKeyDown to true
  19.   set the timeOutPlay to false
  20.   when timeOut then go movie "Summary"
  21. end
  22.  
  23. on TimeOutOff
  24.   resetTimeOut
  25.   set the timeOutMouse to false
  26.   set the timeOutKeyDown to false
  27.   set the timeOutPlay to true
  28.   when timeOut then nothing
  29. end
  30.  
  31.  
  32.  
  33.