AutoHotkey: Difference between revisions

From Omnia
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
== AutoHotkey ==
== Let's Game It Out reference ==
I Broke This Game So Hard, Its Whole Universe Gave Up - Outpath
https://www.youtube.com/watch?v=0FKaIiRhUME
HitMeWithThatClickyClickScriptyScript.ahk :
<pre>
f12::
Start::
MouseClick
sleep, 1
Goto, Start
</pre>
The "sleep, 1" is 1 millisecond = 1,000 timess/second
== keywords ==
== keywords ==



Revision as of 22:33, 5 April 2025

AutoHotkey

Let's Game It Out reference

I Broke This Game So Hard, Its Whole Universe Gave Up - Outpath
https://www.youtube.com/watch?v=0FKaIiRhUME

HitMeWithThatClickyClickScriptyScript.ahk :

f12::

Start::

MouseClick
sleep, 1

Goto, Start

The "sleep, 1" is 1 millisecond = 1,000 timess/second

keywords