Created
June 7, 2016 19:45
-
-
Save ferdbold/543946a23e5a6b41d5a5172b011b3c45 to your computer and use it in GitHub Desktop.
Bind your Print Screen key to Snipping Tool in Windows 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Win7 doesn't allow for binding the PrintScrn key to a shortcut. So instead, you can use | |
; this Autohotkey script to intercept the key and rebind it to another hotkey | |
; (here Ctrl+Alt+1), that can be set inside the properties of the Snipping tool shortcut. | |
; Enjoy! | |
SendMode, Input | |
PrintScreen:: | |
Send, ^!{1} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment