Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: key event

From: rotenca:telvia:it at: 9-Jul-2002 10:54

Hi,
> Is there a way to keep get the caret positiopn whenever any key is pressed?
view layout [ field feel [ engage: func [f a e][ if e/type = 'key [ print ["key-pressed" e/key] print ["caret" system/view/caret] ] ctx-text/edit/engage f a e ] ] ] --- Ciao Romano