I'v been playing with this for a while now.  I've checked out the
www.rebol.com/how-to/feel.html and I have 'probed the source of field to
see if I could figure out how to do.   No luck as of yet.

I used the below code from feel.html to get me started;
view/new layout [
    the-box: box "A Box" forest feel [
        engage: func [face action event] [
            if action = 'key [
                either word? event/key [
                    print ["Special key:" event/key]
                ][
                    print ["Normal key:" mold event/key]
                ]
            ]
        ]
    ]
]
focus the-box
do-events

But can't seem to get this same type of functionality to work with a 'field
instead of a box.

Regards,
Brock

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to