右键单击时按住Shift键?

时间:2013-05-15 19:09:08

标签: autohotkey

有没有办法自动发送 Shift +任何时候通常会发送右键点击右键。

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

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

1 个答案:

答案 0 :(得分:1)

通过dmg在AHK论坛上回答:

RButton::
{
    Sendinput, {Shift down}{RButton down}
    keywait, RButton
    Sendinput, {RButton up}{Shift up}
}
Return