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

[REBOL] Re: Enter Key

From: sanghabum:aol at: 1-Sep-2001 12:56

[ammoncooke--yahoo--com] Hi Ammon
> Does anyone know the string for the enter key? >
#"^M" Use this code to find string for any other key: Insert-event-func [ print [event/type " " mold event/key] return event] unview/all view/new layout [button "Halt" [Halt]] do-events --Colin