AutoHotKey两个不同的热键Lbutton和Lbutton下来

时间:2012-12-01 14:46:26

标签: autohotkey

我试图创建两个热键

一个用于Lbutton ::“鼠标左键(单击)” 另一个用于鼠标左键(仅在保持时,可能超过0.2秒)

或者有像Lbutton Down ::和Lbutton Up ::?

这样的关键列表

1 个答案:

答案 0 :(得分:0)

我会像这样使用keyWait

LButton::
{   ;wait for the mouse button to be let go, set 0.2 second timeout
    KeyWait, LButton, T0.2
if(ErrorLevel)
{   MsgBox holding down
} else
{   MsgBox clicked
}
return
}