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

[REBOL] The Great Escape

From: patrick:philipot:laposte at: 5-Jul-2003 15:08

Hi List, Is there a way to intercept or deactivate the Escape key? I am 'asking for values on a small console program. The program is stopped, if the user hit the Escape key. I have tried to prevent this with TRY, but with no success. Rebol[] name: "John Doe" try [name: ask "what's your name ? "] ; <- - - Escape key here stops the program print ["Your name is " name] halt Regards Patrick