1

有没有办法在Shift通常发送右键单击时自动发送+右键单击。

我当前的代码适用于单击,但是在按住鼠标时不起作用。

RButton::
    Send, {Shift down}
    MouseClick, right
    Send, {Shift up}
Return
4

1 回答 1

1

dmg 在 AHK 论坛上回答:

RButton::
{
    Sendinput, {Shift down}{RButton down}
    keywait, RButton
    Sendinput, {RButton up}{Shift up}
}
Return
于 2013-05-16T12:26:00.280 回答