[REBOL] Re: field focus event
From: mike:yaunish:shaw:ca at: 18-Sep-2003 9:52
Hi guys,
Actually Arie has nailed down my "real" question.
I really need to know when a field has been tabbed into, IE when
it becomes the face focused upon and before any keys are pressed in
the field. For Arie's clarification field clicks can be detected by the
following:
view layout [
across
label "Click this field ->"
f1: field feel [
detect: func [face event] [
print event/type ; Do whatever you want here
event ; return the event to let it be processed
]
]
do [ focus f1 ]
]
Mike Yaunish