need help for reverse shift

Ask gaming related questions (AHK v1.1 and older)
mungbeans
Posts: 4
Joined: 23 Nov 2021, 13:37

need help for reverse shift

23 Nov 2021, 13:41

hi, just need a simple code.
f12 toggles the script, which then holds the shift key
and when shift key is pressed, the shift will be released.
thanks in advance.
User avatar
mikeyww
Posts: 26871
Joined: 09 Sep 2014, 18:38

Re: need help for reverse shift

23 Nov 2021, 21:08

Code: Select all

F12::
on := !on
SoundBeep, 1800 + 500 * on
Return
#If on
$Shift::
Send % "{Shift " ((shift := !shift) ? "down" : "up") "}"
SoundBeep, 1000 + 500 * shift
Return
#If
mungbeans
Posts: 4
Joined: 23 Nov 2021, 13:37

Re: need help for reverse shift

26 Nov 2021, 08:38

thanks for the help, i think there's a misunderstanding.
f12 activates=shift down
when i hold shilft=shift release/up
when i remove my hold on shift=it holds shift again

its like a reverse shift sir. thank you!
User avatar
mikeyww
Posts: 26871
Joined: 09 Sep 2014, 18:38

Re: need help for reverse shift

26 Nov 2021, 12:19

Code: Select all

OnExit("done")

F12::
+F12::
on := !on
If GetKeyState("LShift")
     Gosub, LShift
Else Gosub, LShift Up
Return

#If on
LShift::
RShift::
+RShift::
Send {Blind}{LShift up}
KeyWait, LShift
KeyWait, RShift
Return

LShift Up::
RShift Up::
Send {Blind}{LShift down}
SoundBeep, 1000
Return
#If

done(ExitReason, ExitCode) {
 SoundBeep, 1000
 Send {LShift up}
}
mungbeans
Posts: 4
Joined: 23 Nov 2021, 13:37

Re: need help for reverse shift

27 Nov 2021, 03:18

it works on desktop but when i try it on game, it doest.
User avatar
mikeyww
Posts: 26871
Joined: 09 Sep 2014, 18:38

Re: need help for reverse shift

27 Nov 2021, 06:50

You could look at the tips for games. https://autohotkey.com/board/topic/111737-how-to-make-ahk-work-in-most-games-the-basics/

You can also try a one-line script to see whether AHK works in your game.

Code: Select all

F3::Shift
mungbeans
Posts: 4
Joined: 23 Nov 2021, 13:37

Re: need help for reverse shift

27 Nov 2021, 08:17

Thank you sir! stay safe <3

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: Shoobis and 69 guests