Can VM macros support "if" arguments? or in the future?

The Virtual Audio Mixer discussions and support...
Post Reply
I3ordo
Posts: 24
Joined: Fri Oct 19, 2018 1:35 pm

Can VM macros support "if" arguments? or in the future?

Post by I3ordo »

Currently, i am trying to have proper fade outs and ins during scene changes.

mute:

Code: Select all

Strip(7).fadeto = (-60,900);
Wait(900); 
strip(7).mute=1
unmute:

Code: Select all

Strip(7).fadeto = (-60,50);
Wait(50); 
strip(7).mute=0
Strip(7).fadeto = (-10,900);
The problem is, sometimes, my "Scene keys"in "OBS" tell VM to "mute" or "unMute" but it creates unintentional fades if the BUS is already in the desired state activated by the previous scene.

If VM Macros allowed me to use "if" arguments, it would prevent the unnencessary fade outs...

What do you think Mr VB?
Post Reply