home *** CD-ROM | disk | FTP | other *** search
- global gMouseH, gMouseV, gBackdrop
-
- on startMovie
- set the stageColor to 255
- gMouseH = the mouseH
- gMouseV = the mouseV
- set the keyDownScript to "halt"
- set the mouseDownScript to "halt"
- end
-
- on stopMovie
- end
-
- on enterFrame
- if (the mouseH <> gMouseH) or (the mouseV <> gMouseV) then
- halt()
- end if
- end
-