VoiceAttack
General => How Do I? => Topic started by: Ninja on November 14, 2021, 05:00:58 PM
-
Is there a way to let commands run only if a particular exe is the foreground window, else ignore all voice/keyboard/joystick/mouse commands if not active?
I could only think of adding this to the top of every command:
Set text [dcs] to 'dcs.exe'
Begin Text Compare : [{PROCESSFOREGROUND:dcs}] Equals '0'
Exit Command
End Condition
Say, 'Active'
Is there a better option? Kinda like: #IfWinActive
in AutoHotKey.
Basically I don't want VA to work if I have Alt-Tab'd out of the target program
-
One approach would be to use the "Enable profile switching for the following windows or processes" in your profile, set to the process name or window title of your target application, combined with another profile that has that same option set to "*" (a single asterisk character, to designate it as the default profile) and contains no commands (or only commands you do still want to execute while the target application is not in the foreground).
Do make sure to check the "Enable Auto Profile Switching" option on the "General" tab of the VoiceAttack options window.
-
Thanks for the reply, Pfeil.
Since I use separate profiles for each aircraft in DCS, your solution would not switch back the original profile for me.
However it did give me an idea: use Alt-Tab as a hotkey to check if DCS is not active, and then just disable all of VA's Listening/KB/Mouse/Joystick input monitoring.
I used a loop to wait until DCS is active again to resume VA's own actions.
This way, the active profile need not be changed.
Here's what I did:
Set text [dcs] to 'DCS.exe'
Pause 0.5 seconds
Begin Text Compare : [{PROCESSFOREGROUND:dcs}] Equals '0'
Stop VoiceAttack listening
Disable Hotkeys
Disable Mouse Shortcuts
Disable Joysticks
Start Loop While : [{PROCESSFOREGROUND:dcs}] Equals '0'
Pause 0.5 seconds
End Loop
Start VoiceAttack listening
Enable Hotkeys
Enable Mouse Shortcuts
Enable Joysticks
End Condition
-
That's a smart way to cut off commands when alt-tabbed into another process! Well done!
-
Hehe thanks!