home *** CD-ROM | disk | FTP | other *** search
/ L'Encyclopedie Des Jeux Video 8 / EJV8_CD2.ISO / ejv8-cd2 / viewer.dxr / 00023_Diaporama.ls < prev    next >
Encoding:
Text File  |  2003-10-24  |  537 b   |  21 lines

  1. on mouseUp
  2.   sprite(2).DiaporamaOnOff()
  3.   if sprite(2).DiaporamaMode = 1 then
  4.     member(the memberNum of sprite the currentSpriteNum).foreColor = 0
  5.     member(the memberNum of sprite the currentSpriteNum).backColor = 255
  6.     member("DiaporamaCheckBox").hilite = 1
  7.   else
  8.     member(the memberNum of sprite the currentSpriteNum).foreColor = 255
  9.     member(the memberNum of sprite the currentSpriteNum).backColor = 0
  10.     member("DiaporamaCheckBox").hilite = 0
  11.   end if
  12. end
  13.  
  14. on mouseEnter
  15.   cursor(280)
  16. end
  17.  
  18. on mouseLeave
  19.   cursor(-1)
  20. end
  21.