home *** CD-ROM | disk | FTP | other *** search
/ Disney Interactive Software Sampler 1998 to 1999 / DISNEY99.ISO / Media / SSaver / INSTALL.EXE / INSTALL.dxr / 00056.ls < prev    next >
Encoding:
Text File  |  1998-11-04  |  354 b   |  25 lines

  1. global gExitList, gTrueList
  2.  
  3. on startMovie
  4.   set gExitList to []
  5.   set gTrueList to [3, 46, 13, 17, 34]
  6. end
  7.  
  8. on keyDown
  9.   if the keyCode = 49 then
  10.     set gExitList to []
  11.   else
  12.     set x to the keyCode
  13.     append(gExitList, x)
  14.     compareLists()
  15.   end if
  16. end
  17.  
  18. on compareLists
  19.   if gExitList = gTrueList then
  20.     quit()
  21.   else
  22.     nothing()
  23.   end if
  24. end
  25.