有没有办法自动发送 Shift +任何时候通常会发送右键点击右键。
我的当前代码适用于单击,但是在按住鼠标时不起作用。
RButton::
Send, {Shift down}
MouseClick, right
Send, {Shift up}
Return
答案 0 :(得分:1)
通过dmg在AHK论坛上回答:
RButton::
{
Sendinput, {Shift down}{RButton down}
keywait, RButton
Sendinput, {RButton up}{Shift up}
}
Return