我试图创建两个热键
一个用于Lbutton ::“鼠标左键(单击)” 另一个用于鼠标左键(仅在保持时,可能超过0.2秒)
或者有像Lbutton Down ::和Lbutton Up ::?
这样的关键列表答案 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
}