[REBOL] Adding 'alt-action to a text-list
From: reboler::programmer::net at: 7-May-2002 14:12
Is there a way to add an 'alt-action to each face of a 'text-list? The usual way (see code below) does not work. directory-function-choices: [ ["make-dir"] ["remove-dir"] ] main: layout [ my-list: text-list [print value][ request-list/offset rejoin ["Directory Functions - " value] directory-function-choices 100x100 ] data directory-function-choices ] view main