如何使用 alt + 鼠标左键 + o(键盘上的任何字母数字键)和 autohotkey?

如何使用 alt + 鼠标左键 + o(键盘上的任何字母数字键)和 autohotkey?

我需要两个热键: alt+q+left mouse button

alt+w+left mouse button

现在我有了这个,但是不起作用

$!LButton:: 
IF getkeystate(h)  {
 send mButton down
 KeyWait, LButton
 send mButton up
}

IF getkeystate(o) {
 send rButton down
 KeyWait, LButton
 send rButton up
}

return

和这个:

$!LButton::rbutton
$!LButton up:: send RButton up

它可以工作,但是不适用于“w”或“q”。

和这个:

$!LButton::RButton
IF getkeystate(o) {
 send rButton down
 KeyWait, LButton
 send RButton up
}
return

答案1

下面是使用 alt + 鼠标左键 + q 发送文本的示例。

!LButton::
IF GetKeyState("q", "P")
{
SendInput, hello world
}
Return

相关内容