ALT key and Menu activation

Are you missing a feature? Request its implementation here.
JosephK
Posts: 2
Joined: Tue Nov 27, 2007 12:03 am

ALT key and Menu activation

Post by JosephK »

I'd like to be able to press the Alt key once to activate the menu; I shouldn't have to hold the key down in conjunction with other keys.

Also, after activating the menu, I should be able to use the cursor keys to navigate the menu items.

The current functionality violates what little there is of Windows UI standards.

Thanks.
sorin_ristache
Posts: 4141
Joined: Fri Mar 28, 2003 2:12 pm

Re: ALT key and Menu activation

Post by sorin_ristache »

Hello,
JosephK wrote:I'd like to be able to press the Alt key once to activate the menu; I shouldn't have to hold the key down in conjunction with other keys.
In Swing Java applications a menu is activated from the keyboard only by holding down the Alt key and pressing the key for that menu. It is standard Java UI behavior. Recent versions of the Java virtual machine offer better integration with the host platform but it seems there are still features of the UI standard of the host platform which are not implemented correctly by the UI framework which comes with the Java virtual machine.
JosephK wrote:Also, after activating the menu, I should be able to use the cursor keys to navigate the menu items.
The cursor keys can be used to navigate the menu items after activating a menu. What happens on your Windows computer when you press the arrow keys (up/down, right/left) after activating a menu?


Regards,
Sorin
Post Reply