Skip to content

Instantly share code, notes, and snippets.

@Lokno
Created June 17, 2016 21:18
Show Gist options
  • Save Lokno/ff63034ba411303ceac1c285c96d4c37 to your computer and use it in GitHub Desktop.
Save Lokno/ff63034ba411303ceac1c285c96d4c37 to your computer and use it in GitHub Desktop.
Remaps keys in photoshop for scrubbing
#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