Keeping any key held down forever! | AutoHotkey Tutorials

preview_player
Показать описание
Walden walks through his thought process as he develops a AutoHotkey script to keep any key on the keyboard pressed down with a simple script.

Рекомендации по теме
Комментарии
Автор

This scipt has been working great for me in games, but I was just wondering why it doesn't work in text boxes like notepad or discord.
Not looking for a fix cuz I don't have a problem, great vid!

Tobyoshi
Автор

First minute of the video worked great for all I needed. Thanks!

HLRxxKarl
Автор

Hey walden I have a question how do u keep a key pressed for a certain amount of time? And then releasing it and after pressing another key

Vanisheddd
Автор

I was having some difficulties but it worked out i just had to make it more spacey Thanks for the tutorial!

squidykai
Автор

@Walden's Automation i want to press and hold E for exactly 5 sec and then loop it how to do?

SahajNagarwal
Автор

what script is for hold w, shitf and left mouse button? can you make one for me please?

Michal.Zielinski
Автор

is there a way to have it send the key i'm holding to a specific app i have open? ex: i'm playing a game and also have chrome open, i want it to send the W key in the game while i'm browsing chrome. is that doable?

cornboi
Автор

Walden Automation I have your code and the right coding language but the keyboard inputs are not getting activated when i hold F8 and press a key. The mouse inputs are working fine though.

turtleplop
Автор

May you talk about controlsend in the future, especially how to hold keys in inactive windows with controlsend

zyizgkl
Автор

if u don't need it anymore can you diable the hotkey ?

svn
Автор

is there a way of getting rid of the script if its not longer needed?

robloxfan
Автор

is there a version of there for the newest version of autohotkey?

IsThatDrak
Автор

how do you stop the srcipt?
Im new to using AutoHotkey

A_Wild_Seal
Автор

Hi, I have a question, how can i make my mouse move in minecraft?

snozking
Автор

how i cant have one like the caps lock i presse "R" and it will down shift ans if i represse "R" its go up

PlynkieTheTabbyCat
Автор

Walden, if there is any way, can I get a script that when I hold down XButton2 It holds down left click until I let go of XButton2?


Appreciate it :)

bluemist
Автор

I know that this was made a couple years ago but is there a way to make the key get held down for a certain amount of time then switch to another key? (skyblock farm macro)

duddydude
Автор

How do I make set up the script to only run while my key is actually being held down manually? I'm trying to make a script that basically makes my key act like a trigger on an xbox controller where I have to hold it for it to run.

Zil
Автор

I want to make a "e" button hold itself when i tap it and release itself when i tap it again. is it possible? my script doesn't working.

F8::Suspend

~*e::
toggle:=!toggle
if toggle=1
{
$e::Send {e down}
}
else
{
Send {e up}
}
return

noble_lemon
Автор

How can I disable key-repeat while holding down hotkeys? thx

robinreso