home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 51 / Mobiclic51.iso / mac / DATA / COMMUNS / MOBICLIC_MENUS.CST / 00042_Script_INITIALISATION_PISTE_AIDE < prev    next >
Text File  |  2003-01-30  |  399b  |  29 lines

  1. -- initialisation piste aide
  2.  
  3. global pisteAideRub, aideRub
  4.  
  5. on beginSprite
  6.   set s = the currentSpriteNum
  7.   masquerPistes s,s+1
  8.   set pisteAideRub = s
  9.   set aideRub=0
  10. end
  11.  
  12. on mouseUp
  13.   if aideRub=1 then
  14.     do "aideRub"
  15.     cursor -1
  16.   end if
  17. end
  18.  
  19. on mouseEnter
  20.   if aideRub=1 then
  21.     cursor 280
  22.   end if
  23. end
  24.  
  25. on mouseLeave
  26.   if aideRub=1 then
  27.     cursor -1
  28.   end if
  29. end