Send without interrupting held keystroke Topic is solved

Ask gaming related questions (AHK v1.1 and older)
Prestoro
Posts: 16
Joined: 05 Jun 2021, 17:50

Send without interrupting held keystroke

Post by Prestoro » 03 Oct 2022, 14:53

Hi,

I am trying to run a simple script without hindering my gameplay.

Ingame if I am holding shift or ctrl and the script activates it interrupts the held down key until the Send is finished, so I cannot remain sprinting or crouching during that time.

How do I stop this from happening?

I have tried changing the sendmode to Input, Event, Play (this doesn't send) and tried having {Raw} and not having it for each one.

Code: Select all

v::
while (toggle) {
   Send {Raw}c
   Sleep 100
   Send {Raw}1
   Sleep 500
   If !Toggle {
      Break
  }
}
return

User avatar
mikeyww
Posts: 26588
Joined: 09 Sep 2014, 18:38

Re: Send without interrupting held keystroke  Topic is solved

Post by mikeyww » 03 Oct 2022, 16:51

:arrow: Blind mode
The Blind mode avoids releasing the modifier keys (Alt, Ctrl, Shift, and Win) if they started out in the down position.

Post Reply

Return to “Gaming Help (v1)”