[Macro Buttons] System.execute over VBAN
Posted: Sun Feb 02, 2020 12:07 am
Hi there, Vince!
Let the following macro button, for execution in the remote computer.
1. Mute Strip 1
2. Mute Strip 2
3. Execute a command.
By running this macro, it will successfully mute the strips 1 and 2 - but will not run the system.execute.
As a secondary interesting noteworthy finding; if I put the system.execute at the top of the script:
Everything fails: the script stops running everything after the system.execute
Well, my root question is: How can I trigger a system.execute in a remote computer via VBAN?
Running VoiceMeeter Banana 2.0.5.0.
Thanks a LOT!
- Rodrigo.
Let the following macro button, for execution in the remote computer.
1. Mute Strip 1
2. Mute Strip 2
3. Execute a command.
Code: Select all
BEGIN_SECTION("vban1")
Strip[1].Mute=1;
Strip[2].Mute=1;
System.Execute("c:\users\rodrigo\auto\ptt-off.cmd");
END_SECTION
As a secondary interesting noteworthy finding; if I put the system.execute at the top of the script:
Code: Select all
BEGIN_SECTION("vban1")
System.Execute("c:\users\rodrigo\auto\ptt-off.cmd");
Strip[1].Mute=1;
Strip[2].Mute=1;
END_SECTION
Well, my root question is: How can I trigger a system.execute in a remote computer via VBAN?
Running VoiceMeeter Banana 2.0.5.0.
Thanks a LOT!
- Rodrigo.