I currently have Macros set up to allow me to link the volume of A1, A2 and A3 which can be controlled by the keyboard volume keys. This keeps all my outputs at an equal level.
However, it seems to stop working after a time where only A1 will be controlled.
I have A1 hooked to my volume key so that I can use my keyboard volume control.
This is the code I use for the volume up button. It is set as a push button and an exclusive key:
Code: Select all
bus(0).gain += 1;
bus(1).gain += 1;
bus(2).gain += 1;
When I restart the macros (not VoiceMeeter) it will start working again.
This has been driving me crazy for months, so any help or suggestions would be greatly appreciated!