Last active
August 29, 2015 14:13
-
-
Save InvertedAcceleration/ec3a954d8be9b8da2068 to your computer and use it in GitHub Desktop.
Xonar Essence ST - Analog Out toggling AutoIt script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$windowTitle = "Xonar Essence ST Audio Center" | |
$currentOutput = ControlCommand($windowTitle, "", "[CLASS:ComboBox; INSTANCE:5]", "GetCurrentSelection") | |
$newOutput = stringinstr($currentOutput, "Headphone") ? "2 Speakers" : "Headphone" | |
ControlCommand($windowTitle, "", 2401, "SelectString", $newOutput) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment