Hotkey on Windowmenu
Archives Forums/MaxGUI Bug Reports/Hotkey on Windowmenu| 
 | ||
| It's possible Hotkeys shouldn't be allowed on windowmenus... 
Local win1:TGadget = CreateWindow:TGadget("test" , 216 , 77 , 441 , 419 , Null)
Local men1:TGadget = CreateMenu( "&Hotkey test" , 0 , WindowMenu(win1),KEY_A )
UpdateWindowMenu(win1)
Repeat 
	WaitEvent()
		Select EventID()
		Case EVENT_WINDOWCLOSE
			End
		End Select
Forever
Notice, rather than 'Hotkey_test' it says 'Aotkey test' |