Begineers Guide to Autohotkey: Learn the Basics to then write a program
Loading...
33,376
Loading...
Uploader Comments (HilariousShortFilms)
Top Comments
-
is it really? thats pretty awesome, good job valve. I never used this to cheat.
-
AUTO HOT KEY ITS VAC detectd now ...
see all
All Comments (117)
-
I need help with binding my F1 button to left click! How do I do it?
-
i'm trying to remap my "search" button on my mouse, i believe it's the 6th button on the mouse....can anyone help?
-
What's the command to start the script with a key? And stop it too. Plz answer if you know... ^^
-
I like the cinematography in a screen cast... it's something I haven't seen much. I have a bunch of more in depth AutoHotkey tutorials (9 right now). Take a look if you like :)
-
Hello how would I make shift switch to the one key en two key?
-
is "Sleep" the exact same as a delay?
-
Too annoying to watch.
Loading...
Oh, and I'm not sure if this is the reason why it didn't work, but is it okay to type in
Pause :: Pause
instead of
Pause::Pause
?
jurukiki 10 months ago
@jurukiki
I just tested it and no you cannot have spaces inbetween the key and the double ::
caps dont matter, PAUSE, pause, PauSe all will work.
HilariousShortFilms 9 months ago
i need toggle key , start . stop with 1 2 3 in the middle anyhelp? :d
xLaUgHt3rX 10 months ago
@xLaUgHt3rX
what do you mean 123 in the middle? You want to have key output 123?
K::
send 123
return
?
HilariousShortFilms 10 months ago
Fast fire script, please?
tsunami901 10 months ago
@tsunami901
LButton::
loop 3
{
send {click}
}
return
that would click 3 times. You may want a sleep in there because its extremely fast and for gaming sometimes it doesnt take it.
HilariousShortFilms 10 months ago