作者eight0 (octō)
站內EzHotKey
標題Re: [AHK-] 想把up改成shift & up雙重功能,可嗎?
時間Tue May 19 11:12:31 2015
※ 引述《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
--
(* ̄▽ ̄)/‧★*"`'*-.,_,.-*'`"*-.,_☆,.-*`
http://i.imgur.com/oAd97.png
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.25.242.228
※ 文章網址: https://webptt.com/m.aspx?n=bbs/EzHotKey/M.1432005154.A.E4A.html