[REBOL] Getting function keys to identify/bind to a field.
From: mike:yaunish:shaw:ca at: 12-Dec-2005 21:07
I would like to be able to press the "F4" key to prompt for a field. Using this code it doesn't work as I would have imagined. view layout [ f1: field keycode 'F4 [ print "field #1" ] f2: field keycode 'F4 [ print "field #2" ] ] field #1 is always grabbing the keycode action. Any good ideas to work around this?