home *** CD-ROM | disk | FTP | other *** search
/ Encyklopedia Omnia / Planeta.iso / data / a_gen.dir / 00069_VR07Handlers.ls < prev    next >
Encoding:
Text File  |  2000-11-14  |  438 b   |  18 lines

  1. on handleMouseUpA_VR07
  2.   global gMouseDownLocVR
  3.   set offs to point(2, 2)
  4.   set p to point(mouseH(), mouseV())
  5.   if inside(gMouseDownLocVR, rect(p - offs, p + offs)) then
  6.     set id to the hotSpotID of sprite(1)
  7.     put id
  8.     case id of
  9.       0:
  10.         set the MouseUpHandler of sprite(1) to EMPTY
  11.         go(#next)
  12.       255:
  13.         set the MovieMouseClick of sprite(1) to 0
  14.         apriMessaggio("m_hab06")
  15.     end case
  16.   end if
  17. end
  18.