作者bugz (czw)
看板EzHotKey
标题Re: [AHK-] 侦测滑鼠CLICK
时间Thu Oct 30 19:58:25 2008
※ 引述《noar (小安)》之铭言:
: 我想请问
: 如果我想要侦测滑鼠按键
: 要如何写
: 例如说
: 按 E 启动热键
: 送出 E
: 直到滑鼠按右键就再送出 R
: 如果按左键就跳出
随便写写的
假设你的意思是要持续送出E,R
e::
Loop{
Send E
GetKeyState, state1, RButton
if state1 = D
break
GetKeyState, state2, LButton
if state2 = D
break
}
if state1 = D
Loop{
Send R
GetKeyState, state2, LButton
if state2 = D
break
}
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 124.218.132.99