home *** CD-ROM | disk | FTP | other *** search
/ CD Actual: Unknown Issue / mycd.iso / CATALA.DXR / scripts_8_menuinferior.ls < prev    next >
Encoding:
Text File  |  1999-04-19  |  337 b   |  22 lines

  1. property destino
  2.  
  3. on mouseEnter me
  4.   cursor(280)
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9. end
  10.  
  11. on mouseUp me
  12.   go(destino)
  13.   cursor(-1)
  14. end
  15.  
  16. on getPropertyDescriptionList me
  17.   num = the currentSpriteNum + 10
  18.   lista = [:]
  19.   addProp(lista, #destino, [#format: #marker, #default: "menu", #comment: "Punto del menu asociado"])
  20.   return lista
  21. end
  22.