Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save InvertedAcceleration/ec3a954d8be9b8da2068 to your computer and use it in GitHub Desktop.
Save InvertedAcceleration/ec3a954d8be9b8da2068 to your computer and use it in GitHub Desktop.
Xonar Essence ST - Analog Out toggling AutoIt script
$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