autohotkey detecting a doubleclick code example
Example: 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
; Use double-click as a hotkey
~LButton::
If (A_TimeSincePriorHotkey<300) and (A_PriorHotkey="~LButton"){
;code to execute on double click
}
Return