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

The Great Escape

 [1/3] 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

 [2/3] from: g::santilli::tiscalinet::it at: 5-Jul-2003 16:30


Hi patrick, On Saturday, July 5, 2003, 3:08:52 PM, you wrote: p> Is there a way to intercept or deactivate the Escape key? You can disable it. system/console/break: false Regards, Gabriele. -- Gabriele Santilli <[g--santilli--tiscalinet--it]> -- REBOL Programmer Amigan -- AGI L'Aquila -- REB: http://web.tiscali.it/rebol/index.r

 [3/3] from: amicom:sonic at: 5-Jul-2003 8:12


Patrick, system/console/break: false Bohdan "Bo" Lechnowsky At 03:08 PM 7/5/03 +0200, you wrote: