Quantcast
Channel: AutoHotkey Community
Viewing all articles
Browse latest Browse all 579

Ask for Help (v1) • Combining long press and double tapping scripts

$
0
0
Hi all,
The following two scripts work well separately but not together. Any chance of combining it so that one script can send short press/single tap, long press, double tap and triple press?
Thank you in advance.

CODE:


#IFWinActive, ahk_exe notepad.exe
d::
{
count++
settimer, actions, 350
}
return

actions:
{
if (count = 1)
{
send d
}
else if (count = 2)
{
send e
}
else if (count = 3)
{
send f
}
count := 0
}
return
#IFWinActive


CODE:

#IFWinActive, ahk_exe notepad.exe
$d::
keywait, d, T0.5
if errorlevel {
SoundBeep
Send e
} else Send d
keywait, d
; d key down would immediately trigger $d:: again
return
#IFWinActive

Statistics: Posted by Joey5 — Today, 18:23



Viewing all articles
Browse latest Browse all 579

Trending Articles