Remapped Modifier Auto-Repeat Doesn't Work Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
abcjme
Posts: 65
Joined: 08 Mar 2018, 10:48

Remapped Modifier Auto-Repeat Doesn't Work

21 Mar 2019, 02:29

$lalt::send {bs}

· if i hold this key down, it doesn't auto-repeat
· however, i want it to auto-repeat
? is there a way to do this
AviationGuy
Posts: 188
Joined: 17 Jan 2019, 10:13

Re: Remapped Modifier Auto-Repeat Doesn't Work  Topic is solved

21 Mar 2019, 04:09

Hi there,

There is :) Try the following.

Code: Select all

$LAlt::
if getkeystate("Alt", "P"){
	send bs
	; sleep 10 -> add sleep if you want to press 'bs' slower
}
return
abcjme
Posts: 65
Joined: 08 Mar 2018, 10:48

Re: Remapped Modifier Auto-Repeat Doesn't Work

21 Mar 2019, 04:16

AviationGuy wrote:
21 Mar 2019, 04:09
Hi there,

There is :) Try the following.

Code: Select all

$LAlt::
if getkeystate("Alt", "P"){
	send bs
	; sleep 10 -> add sleep if you want to press 'bs' slower
}
return
· this didn't work
· also, with your code, control now fires when i press alt

· edit
·· nevermind, it worked with a drand new script
·· something else in my script must be conflicting
·· i'll need to do some more tweaking

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Anput, Lamron750, mikeyww and 230 guests