can someone show me the script that will turn space+a into press system pip four times
you the man, have a most awesome dayThe spacebar isn't a modifier key by default so you'd have to set up a custom definition, which would make the spacebar lose its original function. You would be better off using Shift instead, the code for Shift+a would be +a. If you really want to use space+a, then it would be Space & a.
List of Keys (Keyboard, Mouse and Controller) | AutoHotkey v1
This page lists all mouse buttons, keyboard keys and controller buttons which can be used for hotkeys and key-specific commands/functions.autohotkey.comHotkeys - Definition & Usage | AutoHotkey
Learn details about hotkeys in general, modifier symbols, context-sensitive hotkeys, custom combinations, mouse wheel hotkeys, function hotkeys, etc.www.autohotkey.com
;full WEP
Space & d::
send {l}
send {l}
send {l}
send {l}
return
;full WEP
Space & d::
send {l 4}
return
is there anything i can do from ingame that lets me use the suspend hotkeys command without having to alt tab?
!p::Suspend
#IfWinActive Elite - Dangerous (CLIENT)
Hmm..strange behaviour and I have no idea, I'm afraid. are you sure there's no error in your bindings where left alt also sends the command?@Jaggid Edje
why would any hotkey containing left alt also toggle flight assist off/on, which i have bound to left ctrl?