home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 46 / Mobiclic46.iso / pc / DATA / COMMUNS / MOBICLIC_MENUS.CST / 00043_Script_GESTION_POINTINFOS < prev    next >
Text File  |  2002-08-21  |  427b  |  20 lines

  1. -- gestion du pointInfos
  2. global pisteInfos
  3.  
  4. on mouseUp
  5.   set the visible of sprite pisteInfos to not(the visible of sprite pisteInfos)
  6.   set the visible of sprite (pisteInfos+1) to not(the visible of sprite (pisteInfos+1))
  7. end
  8.  
  9. on beginSprite
  10.   set pisteInfos = the currentSpriteNum - 2
  11.   masquerPistes pisteInfos, (pisteInfos+1)
  12. end beginSprite
  13.  
  14. on mouseEnter
  15.   cursor 280
  16. end
  17.  
  18. on mouseLeave
  19.   cursor -1
  20. end