Page 1 of 1

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

Posted: Sat May 30, 2020 10:52 am
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?