home *** CD-ROM | disk | FTP | other *** search
/ ATComputers Catalog / AutoCont+ATcomp.bin / Data / Option.dxr / Intern_6_ButtonC.ls < prev    next >
Encoding:
Text File  |  2003-07-23  |  262 b   |  19 lines

  1. global _Kanal
  2.  
  3. on mouseEnter me
  4.   _Kanal = me.spriteNum
  5.   sprite(_Kanal).cursor = 280
  6. end
  7.  
  8. on mouseWithin me
  9.   if _Kanal = 0 then
  10.     _Kanal = me.spriteNum
  11.     sprite(_Kanal).cursor = 280
  12.   end if
  13. end
  14.  
  15. on mouseLeave
  16.   sprite(_Kanal).cursor = -1
  17.   _Kanal = 0
  18. end
  19.