home *** CD-ROM | disk | FTP | other *** search
- global gMouseH, gMouseV
-
- on startMovie
- set gMouseH to the mouseH
- set gMouseV to the mouseV
- set the keyDownScript to "quit"
- set the mouseDownScript to "quit"
- cursor(200)
- end
-
- on enterFrame
- if (the mouseH <> gMouseH) or (the mouseV <> gMouseV) then
- quit()
- end if
- end
-