I would like to define hjkl for turning pages. Is there are way to achieve this natively in Adobe?
I am no relaying relying on AHK (autohotkey) to realize the changes.
Here goes the strokes I've defined for adobe:
#IfWinActive ahk_class AcrobatSDIWindow
/:: send ^f
^f:: send {PgDn}
^b:: send {PgUp}
^j:: send {Down}
^e:: send {Down}
^k:: send {Up}
^y:: send {Up}
#IfWinActive
You will notice that I am using control key as modifier. This is because, AHK cannot tell apart the input environments. I would still want to type all characters on the keyboard, for purpose of taking notes. This is painful.