如何使用自动热键使 lshift 和 n 执行向下翻页和 1

如何使用自动热键使 lshift 和 n 执行向下翻页和 1

我想将Left Shift+绑定NPgDn+ 1。如何在 AutoHotKey 中执行此操作?我尝试了很多方法,但都无法正确完成。

答案1

尝试这个:

LShift & n::Send {PgDn down}{1 down}{PgDn up}{1 up}

答案2

+n::
{
Send {pgdn down}{1 down}
While GetKeyState("w","P")
{
; do nothing
}
Send {pgdn up}{1 up}
} 
return

相关内容