내 태블릿에서 세 번의 클릭을 사용하여 ^w(Chrome 창 닫기)와 같은 작업을 수행하고 싶습니다.
"RapidHotkey" 스크립트를 사용해 보았으나 소용이 없었습니다. 귀하의 도움에 크게 감사하겠습니다. 감사합니다.
답변1
OP에 따라 :
~LButton::
if winc_presses > 0 ; SetTimer already started, so log keypress instead
{
winc_presses += 1
Return
}
winc_presses = 1
SetTimer, TheKey, 600
Return
TheKey:
SetTimer, TheKey, off
if winc_presses = 3 ; The key was pressed thrice
{
send ^w
}
winc_presses = 0
Return