Gosub

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
Alcrkai
Posts: 47
Joined: 16 Mar 2021, 10:51

Gosub

Post by Alcrkai » 18 Jul 2021, 06:16

How do I give a gosub to a function every five minutes?

just me
Posts: 9574
Joined: 02 Oct 2013, 08:51
Location: Germany

Re: Gosub

Post by just me » 18 Jul 2021, 06:29

Code: Select all

SetTimer, ...

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

Re: Gosub

Post by mikeyww » 18 Jul 2021, 06:32

Code: Select all

SetTimer, Routine, % 1000 * 60 * 5

Post Reply

Return to “Ask for Help (v1)”