Re: [AHK-] 想把up改成shift & up双重功能,可吗?

楼主: eight0 (欸XD)   2015-05-19 11:12:31
※ 引述《goman178 (goman)》之铭言:
: 想把方向键的up键改成
: 短按up = up
: 持续按up = shift (toggle) , 作为modifier key
: 要怎么写呢???
; 延迟时间
timeout := 0.1
; 侦测 up 键
*$up::
; 等待 up 在 %timeout% 秒之内被放开
KeyWait, up, T%timeout%
if (!ErrorLevel) {
; 如果被放开,表示是短按,送出 up
Send {up}
} else {
; 如果没被放开,表示是长按,送出 Shift down ... Shift up
Send {Shift Down}
KeyWait, up
Send {Shift Up}
}
return

Links booklink

Contact Us: admin [ a t ] ucptt.com