Re: [racket] GUI buttons with & in label

2014-01-30 Thread Harry Spier
OK I see whats happening. (windows 7) The button text is "&C" i.e. capital C "C" is not underlined when displayed typing "C" i.e. capital C does not click the button but typing "c" non-capital C does click the button On Mon, Jan 27, 2014 at 10:10 PM, Roman Klochkov wrote: > Windows XP, Racket

Re: [racket] GUI buttons with & in label

2014-01-27 Thread Roman Klochkov
Windows XP, Racket 5.3.6 x86 "C" on button is not underlined, but when press "C" on keyboard, button is pressed. Понедельник, 27 января 2014, 20:06 -08:00 от Danny Yoo : >Hi Harry, > >Potential platform-specific behavior? Appears to have expected >behavior on an Ubuntu Linux-based machine. >__

Re: [racket] GUI buttons with & in label

2014-01-27 Thread Danny Yoo
Hi Harry, Potential platform-specific behavior? Appears to have expected behavior on an Ubuntu Linux-based machine. Racket Users list: http://lists.racket-lang.org/users

[racket] GUI buttons with & in label

2014-01-27 Thread Harry Spier
I'm using Racket 5.3.6 with windows and ran the following GUI program #lang racket/gui (define frame (new frame% [label "Example"])) (define msg (new message% [parent frame][label "No events so far..."])) (new button% [parent frame] [label "&Click Me"] ; Callback procedure for a button cl