[Iup-users] Silence Alt keys

2017-12-21 Thread Pete Lomax via Iup-users
I have finally figured out a solution (this is written in Phix, btw): In key_cb: if alt and find(base,"BCDILUX") then string Yelp = "" Yelp[2] = base IupSetStrAttribute(main_help_menu,"TITLE",Yelp) reset_help = true end if In main_help_menu_open_cb:

Re: [Iup-users] Silence Alt-keys

2017-12-01 Thread Antonio Scuri
That's the default behavior in any application. The system rings a bell exactly to notify the user that it is a hot key that does nothing. You can try that in Word, Excel, Notepad, etc... Best, Scuri 2017-11-30 22:20 GMT-02:00 Pete Lomax via Iup-users < iup-users@lists.sourceforge.net>: >

Re: [Iup-users] Silence Alt-keys

2017-12-01 Thread Ranier VF
Lomax via Iup-users <iup-users@lists.sourceforge.net> Enviado: sexta-feira, 1 de dezembro de 2017 00:20 Para: iup-users@lists.sourceforge.net Cc: Pete Lomax Assunto: [Iup-users] Silence Alt-keys Does anyone know how to silence Alt keys? I have tried returning IUP_IGNORE from K_ANY, KEYPR

[Iup-users] Silence Alt-keys

2017-11-30 Thread Pete Lomax via Iup-users
Does anyone know how to silence Alt keys? I have tried returning IUP_IGNORE from K_ANY, KEYPRESS_CB, GLOBALKEYPRESS_CB, and K_mC but it still sounds the bell, unless there is a matching accelerator key on a menu, mind you I also want to be able to process keys such as Alt + ',' (and I have