Code Misunderstanding Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
CodaPachia
Posts: 1
Joined: 19 Aug 2018, 13:58

Code Misunderstanding  Topic is solved

19 Aug 2018, 14:06

How do I turn this left click timer loop into a right click one, im not understanding the difference between the clicks.

#Persistent

SetTimer Click, 3000
Return

Click:
Click
Return
guest3456
Posts: 3463
Joined: 09 Oct 2013, 10:31

Re: Code Misunderstanding

19 Aug 2018, 14:55

Code: Select all

#Persistent

SetTimer myClicker, 3000            ; this is just the Label that gets run every 3 seconds
Return

myClicker:                         ; the label name
   Click, right           ; this is the actual click command
Return


Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Anput, Google [Bot], mcd, Nerafius, Rohwedder and 111 guests