我想将Left Shift+绑定N到PgDn+ 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
我想将Left Shift+绑定N到PgDn+ 1。如何在 AutoHotKey 中执行此操作?我尝试了很多方法,但都无法正确完成。
尝试这个:
LShift & n::Send {PgDn down}{1 down}{PgDn up}{1 up}
+n::
{
Send {pgdn down}{1 down}
While GetKeyState("w","P")
{
; do nothing
}
Send {pgdn up}{1 up}
}
return