Brookter, I need to play around with it more, but it works far better than I expected.
One issue will be finding a balance between PagingUp/Down in the Editor vs. the Outliner or Corkboard views, but maybe I’ll incorporate an additional key with the Page keys to differentiate those scenarios.
Thank you for thinking outside the box!!!
@jwhitten and anyone else willing to try this, change the arrow count to suit your editor setup and preferences.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;--------------------------------------------------------------------------
SetTitleMatchMode, 2
#IfWinActive ahk_class Qt5153QWindowIcon
;--------------------------------------------------------------------------
PgDn::
Send {Down 26}
return
PgUp::
Send {Up 26}
return