Reputation: 1
I need a script of AHK for disabling the alt+shift+print key combination from the computer.
I have tried below script but the script is not working.
!Shift::return
Upvotes: 0
Views: 378
Reputation: 111
Windows catches the shortcut on a lower level than Autohotkey so first you need to disable High Contrast Keyboard Shortcut (see Disable High Contrast Keyboard Shortcut in Windows 10).
Then this will work: +!PrintScreen::return
Upvotes: 0