home *** CD-ROM | disk | FTP | other *** search
/ Sunday That One Day / STOD_VFS_INVIS.ISO / pc / classr.dxr / 00577_StartMovie.ls < prev    next >
Encoding:
Text File  |  1995-09-15  |  349 b   |  20 lines

  1. on startMovie
  2.   set the exitLock to 1
  3.   clearGlobals()
  4.   CursorOff()
  5.   set the keyDownScript to "keyDownHandler"
  6.   set the keyUpScript to "keyDownHandler"
  7. end
  8.  
  9. on keyDownHandler
  10.   dontPassEvent()
  11.   if the commandDown and (the key = "q") then
  12.     quit()
  13.   end if
  14.   if the keyCode = "53" then
  15.     go("Black", "Quit")
  16.   else
  17.     nothing()
  18.   end if
  19. end
  20.