Need help for making macro with 2 click

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
janhawk
Posts: 1
Joined: 05 Oct 2022, 17:10

Need help for making macro with 2 click

Post by janhawk » 05 Oct 2022, 17:17

Hello to all!

I need help to make a script that when i left click it will activate Right mouse button click + 0.75ms + left click please with a toggle f1 for enable /disable.

Thank you everyone!

User avatar
mikeyww
Posts: 26891
Joined: 09 Sep 2014, 18:38

Re: Need help for making macro with 2 click

Post by mikeyww » 06 Oct 2022, 06:35

Welcome to this AutoHotkey forum!

I'm a bit skeptical that AutoHotkey can wait exactly 0.75 milliseconds for something to happen! I know I will be proven wrong....

Code: Select all

F1::
on := !on
SoundBeep, 1000 + 500 * on
Return

#If on
LButton::
Click, R
Sleep, 1
Click
Return
#If

Post Reply

Return to “Ask for Help (v1)”