audio output switching macros
Go to solution
Solved by minibois,
You could use AutoHotKey to do such a thing with your already existing keyboard:
https://www.autohotkey.com/boards/viewtopic.php?t=31650
Just change the key binds to whatever you would like:
^1::SetSound(1) ^2::SetSound(2) ^3::SetSound(3)
That for example would be Ctrl 1, Ctrl 2 and Ctrl 3.
^ = Ctrl, the number behind it is just a number and the double colon (:) is saying 'if that is typed :: do this.
List of key names if you want a different button to call this:
https://www.autohotkey.com/docs/KeyList.htm
You could use a device like the Orbweaver for this, or a full secondary keyboard:
But I would probably just bind those shortscuts to Ctrl+Numpad 1/2/3/etc.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now