作者shyangs (丹丹)
看板EzHotKey
标题Re: [请问] 用滑鼠使用Alt+Tab
时间Sun Oct 3 16:01:17 2010
※ 引述《enjoyloli (M)》之铭言:
: LButton down::Send {ALTDown}
: RButton::Send {Tab}
: LButton UP::Send {ALTUP}
$RButton::
LButtonIsDown := GetKeyState("LButton")
If(LButtonIsDown){
AltIsDown := GetKeyState("Alt")
If(AltIsDown){
SendInput, {Tab}
}Else{
SendInput, {Alt Down}
SendInput, {Tab}
}
KeyWait, LButton, U
SendInput, {Alt Up}
}Else{
SendInput, {RButton}
}
Return
有一点问题,AHK 是 single thread,
按第二次 RButton 不能中断第一次按所产生 thread,
等高手修正上面的程式码。
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 125.224.185.157
1F:推 enjoyloli:刚用了一下 好像右键会被锁定@@ 10/03 16:12
2F:推 UndeadSion:试试 ~LButton & RButton::AltTab 10/03 23:43
3F:推 MikageLin:呀,你跑来这里问了啊,辛苦你了~~ 10/04 11:19
4F:推 enjoyloli:XDD 原作者出现了XD 因为我真的很常使用这个功能 很好用 10/05 02:03