home *** CD-ROM | disk | FTP | other *** search
- property destino, tipo
-
- on getPropertyDescriptionList
- lista = [:]
- addProp(lista, #destino, [#format: #string, #default: EMPTY, #comment: "El destino"])
- addProp(lista, #tipo, [#format: #symbol, #range: [#peli, #mark], #default: EMPTY, #comment: "Peli o marker"])
- return lista
- end
-
- on mouseUp me
- cursor(-1)
- if tipo = #mark then
- go(destino, "menu2")
- else
- go(1, destino & ".dir")
- end if
- end
-
- on mouseEnter me
- member("menuabajo").text = destino
- end
-
- on mouseLeave me
- member("menuabajo").text = EMPTY
- end
-