home *** CD-ROM | disk | FTP | other *** search
/ Encyklopedia Omnia / Planeta.iso / data / e_gen.dir / 00039_VR08Handlers.ls < prev    next >
Encoding:
Text File  |  2000-10-16  |  559 b   |  21 lines

  1. on handleMouseUpVR08
  2.   global gMouseDownLocVR, gMessageID
  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.     case id of
  8.       205:
  9.         set the MouseUpHandler of sprite(1) to EMPTY
  10.         moveToBack(window "m_navig")
  11.         set the visible of window "m_navig" to 0
  12.         go(#next)
  13.       31:
  14.         set the MovieMouseClick of sprite(1) to 0
  15.         apriMessaggio("m_evo06")
  16.       otherwise:
  17.         nothing()
  18.     end case
  19.   end if
  20. end
  21.