Created
June 17, 2016 21:18
-
-
Save Lokno/ff63034ba411303ceac1c285c96d4c37 to your computer and use it in GitHub Desktop.
Remaps keys in photoshop for scrubbing
This file contains 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
#IfWinActive, ahk_class Photoshop | |
{ | |
; sends Page Up instead of comma ( Back one frame ) | |
,:: | |
SendInput {PgUp} | |
return | |
; sends Page Down instead of period ( Forward one frame ) | |
.:: | |
SendInput {PgDn} | |
return | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment