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

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