home *** CD-ROM | disk | FTP | other *** search
/ FHM 100 Bombázó Ajándék CD / fhm_hu_1997.iso / fhm_scr.exe / fhm_scr.dxr / 00100.ls < prev    next >
Encoding:
Text File  |  2001-03-13  |  316 b   |  19 lines

  1. global gMouseH, gMouseV, gBackdrop
  2.  
  3. on startMovie
  4.   set the stageColor to 255
  5.   gMouseH = the mouseH
  6.   gMouseV = the mouseV
  7.   set the keyDownScript to "halt"
  8.   set the mouseDownScript to "halt"
  9. end
  10.  
  11. on stopMovie
  12. end
  13.  
  14. on enterFrame
  15.   if (the mouseH <> gMouseH) or (the mouseV <> gMouseV) then
  16.     halt()
  17.   end if
  18. end
  19.