Topic: script to change totalmix preset

Hi,

RME9632

I would first apologyze for my poor english.

On Totalmix, I set 3 presets based on the speakers used on my PC : changing preset change the output nd the level. Can we change the preset with a script or command line?
I would like to create a script that will be launch by a  remote control to change the preset without opening TotalMix.

2 (edited by robob 2012-02-06 14:54:39)

Re: script to change totalmix preset

hi,
this script VBS open the HDSP mixer, but the ALT key doesn't work : (shortcut ALT 1 open the preset N°1)

set objShell = WScript.CreateObject("WScript.Shell")
objshell.run "HDSPMix.exe"
WScript.Sleep 500
objShell.SendKeys "%1"
WScript.Sleep 100
objShell.SendKeys "{ESCAPE}"

Any idea ?