作者lan661203 (庙小狼)
看板EzHotKey
标题[AHK-]滑鼠长按
时间Tue Feb 10 18:15:37 2015
以下是在板上找到的程式码
#Persistent
D_times = 1000 ;1秒
~lbutton::
StartTime := A_TickCount
While GetKeyState("lbutton")
{
If (A_TickCount - StartTime > D_times)
Goto, mouse ;
}
Return
mouse:
send {click down} ;这里已修改滑鼠左键按下
Return
但它会因为我的滑鼠放开时,而停止滑鼠按下的动作
我是想要滑鼠按住一秒後自动按住 除非滑鼠在点一下
否则它持续按住滑鼠。
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 59.126.26.160
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/EzHotKey/M.1423563340.A.848.html