Ineed help

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
saiofa123
Posts: 2
Joined: 23 Aug 2017, 14:43

Ineed help

23 Aug 2017, 14:49

I Need script that hold w until ireplace it ikept searching for hour and cant find any thing
Rindis
Posts: 213
Joined: 23 Dec 2013, 13:58
Location: Norway
Contact:

Re: Ineed help

24 Aug 2017, 00:05

Not sure what are trying to achieve, but this might do (it will eat your memory):

Code: Select all

w::
send {w down} ; holds the w down
return


q::
send {w up} ; releases the w
return

esc:: ; escape your safety button
exitapp
saiofa123
Posts: 2
Joined: 23 Aug 2017, 14:43

Re: Ineed help

24 Aug 2017, 13:30

Thats not working it does not even type w once :/ it just block w key
Rindis
Posts: 213
Joined: 23 Dec 2013, 13:58
Location: Norway
Contact:

Re: Ineed help

25 Aug 2017, 01:19

what do you want your script to do? I.e. There is a difference between holding down a key and sending it multiple times
saiofa1234

Re: Ineed help

25 Aug 2017, 16:01

iwant one that hold w not spam it and sorry iforgeted my email
Rindis
Posts: 213
Joined: 23 Dec 2013, 13:58
Location: Norway
Contact:

Re: Ineed help

26 Aug 2017, 03:33

I'm sorry but I do not understand what you want to do, maybe someone else does
Rindis
Posts: 213
Joined: 23 Dec 2013, 13:58
Location: Norway
Contact:

Re: Ineed help

26 Aug 2017, 12:39

Code: Select all


#MaxThreadsperHotkey 2
w::
toggle := !Toggle
loop
{
if toggle
{
Send, {w}
Sleep, 10
}

else
	break
}
return


esc::
ExitApp



Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Descolada, GollyJer, Lamron750, septrinus and 239 guests