home *** CD-ROM | disk | FTP | other *** search
/ Galleria D'arte: Manet / Manet.iso / Dati / Main.dxr / 00022_tooltiptasto.ls < prev    next >
Encoding:
Text File  |  2000-12-21  |  747 b   |  33 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   set the member of sprite the currentSpriteNum to member("Aiuto_F3")
  4. end
  5.  
  6. on mouseDown me
  7.   cursor(280)
  8.   set the member of sprite the currentSpriteNum to member("Aiuto_F2")
  9. end
  10.  
  11. on mouseLeave me
  12.   global gTooltip
  13.   cursor(-1)
  14.   if gTooltip = 1 then
  15.     set the member of sprite the currentSpriteNum to member("Aiuto")
  16.   else
  17.     set the member of sprite the currentSpriteNum to member("Aiuto_F4")
  18.   end if
  19. end
  20.  
  21. on mouseUp me
  22.   global gTooltip
  23.   cursor(-1)
  24.   if gTooltip = 1 then
  25.     gTooltip = 0
  26.     sprite(120).loc = point(-100, -100)
  27.     set the member of sprite the currentSpriteNum to member("Aiuto_F4")
  28.   else
  29.     gTooltip = 1
  30.     set the member of sprite the currentSpriteNum to member("Aiuto")
  31.   end if
  32. end
  33.