Page 1 of 1

How to keep the key repeating...

Posted: 05 Mar 2018, 02:20
by VISHAL
Hi!

My laptop's Up Arrow key broke down, and I made the following script:
Shift::Send {UP}

where Shift works as Up key, but it doesn't work same as the Real Up Arrow key, where Pressing the Up key it will keep going up until release...

In short it want a script where by pressing (Any) Shift button the Up arrow key would continue working as UP Key until Shift key is released.

Thanks in advanced...

Re: How to keep the key repeating...

Posted: 05 Mar 2018, 03:43
by Nwb
Like this?

Code: Select all

$Shift:: Send, {UP up}
$Shift Up:: Send, {Up down}

Re: How to keep the key repeating...

Posted: 05 Mar 2018, 06:14
by VISHALVODRO
Hi!
Thanks for the reply, looks like that didn't work for me, what I wanted is, if I press Shift key then it would be mapped as Up arrow key. But unlike default windows key, it doesn't continue keep going up, it goes only 1 at a single press. I wanted it to continue going up until released...

Re: How to keep the key repeating...

Posted: 05 Mar 2018, 06:24
by GEV

Code: Select all

Shift::Up
or

Code: Select all

RShift::Up
if you need LShift for other operations with Shift.
See
https://autohotkey.com/docs/misc/Remap.htm

Re: How to keep the key repeating...

Posted: 05 Mar 2018, 06:45
by VISHALVODRO
Shift::Up
This works besically, but when I try replacing the Shift with Virtual Key (Multimedia Keyboard) it just works for single instance...

vkAC::Up
Works only once, not repeatedly like Shift::Up

Any idea to combine these both???

Re: How to keep the key repeating...

Posted: 05 Mar 2018, 07:02
by VISHALVODRO
Or else if you could tell me this formula:

a=b & b=c

so I wanted a=c but not this way: a::c

It has to trigger like this
A=B and B would bring C when A would be pressed...

Re: How to keep the key repeating...  Topic is solved

Posted: 06 Mar 2018, 01:23
by VISHALVODRO
any update?

Re: How to keep the key repeating...

Posted: 06 Mar 2018, 03:32
by Rohwedder
Hallo,
you want: A=B and B would bring C when A would be pressed?
Try:

Code: Select all

#InputLevel 1
a::b
#InputLevel 0
b::c

Re: How to keep the key repeating...

Posted: 07 Mar 2018, 09:23
by VISHALVODRO
hi!

It's bringing the same, pressing A, B comes, and pressing B, C comes.

No changes for me so far...