I would like to detect the key combination (Alt + LeftMouse click) in Autohotkey. Upon detection, Autohotkey will simulate a double-click action with a delay in between the clicks.
This is my Autohotkey code. It does not work. What is wrong with it?
#IfWinActive Outlook
!LButton:: ;Alt-LeftMouseClick
{
SendInput {Left}
Sleep, 200
SendInput {Left}
return
}
return