Does anyone know how to make a double HotKeyEvent modifier? Something like...
That code should exit if you press Ctrl+Shift+ESC. I can't figure how to do that...
Window=CreateWindow("Window",0,0,640,480,0,1) ;5 = Ctrl+Shift+<key> HotKeyEvent(1,5,$803) Repeat id=WaitEvent() Select id case $803 FreeGadget Window End End Select Forever End
That code should exit if you press Ctrl+Shift+ESC. I can't figure how to do that...