home *** CD-ROM | disk | FTP | other *** search
/ Mundo do CD-ROM 19 / CDROM19.iso / lazer / copa2 / intro.exe / intro.dxr / 00050.ls < prev    next >
Encoding:
Text File  |  1997-03-06  |  283 b   |  16 lines

  1. global gMouseH, gMouseV
  2.  
  3. on startMovie
  4.   set gMouseH to the mouseH
  5.   set gMouseV to the mouseV
  6.   set the keyDownScript to "quit"
  7.   set the mouseDownScript to "quit"
  8.   cursor(200)
  9. end
  10.  
  11. on enterFrame
  12.   if (the mouseH <> gMouseH) or (the mouseV <> gMouseV) then
  13.     quit()
  14.   end if
  15. end
  16.