Answers for "autohotkey detecting a doubleclick"

1

autohotkey detecting a doubleclick

; Use double-click as a hotkey
~LButton::

If (A_TimeSincePriorHotkey<300) and (A_PriorHotkey="~LButton"){
	;code to execute on double click
}

Return
Posted by: Guest on May-05-2021

Browse Popular Code Answers by Language