macros - Autohotkey sending multiple "push-to-talk" keydown / keyup events -


the situation is: i'm using combination of teamspeak [shared communication], arma 2 acre extension [gaming software w/ extended "radio" capabilities] , dxtory [video , audio splitting/recording software].

the problem is: dxtory records audio when single hotkey pressed. acre uses set of hotkeys allow switching between different radios. end losing audio "push-to-talk" keys aren't monitored dxtory.

what i'd like: i'm thinking autohotkey should allow me take "numpad-key-1" press , produce "numpad-key-1" + "g3" (g3 being unused arma/acre, being used "push-to-talk" dxtory , "numpad-key-1" being push-to-talk arma/acre). similarly, i'd map "numpad-key-2" "numpad-key-2" + "g3" , "numpad-key-3" "numpad-key-3" + "g3".

the g3 key need key-down corresponding "numpad-key" pressed , released key-up event.

can done? if so, hints on how?

thanks!

this achieved quite simply. repeat code in script changing numpad0-9 , possibly "g3" key, don't have 1 of on keyboard.

numpad0::                           ;declare hotkey     while getkeystate("numpad0")    ;check key state     {         sendinput {g3 down}         ;set g3 pressed      }      sendinput {g3 up}               ;set g3 released  return                              ;return function 

Comments

Popular posts from this blog

ios - UICollectionView Self Sizing Cells with Auto Layout -

node.js - ldapjs - write after end error -

DOM Manipulation in Wordpress (and elsewhere) using php -