bitfocus / companion-module-studiocoast-vmix

Studiocoast vMix module for Bitfocus Companion
MIT License
33 stars 12 forks source link

Mix1 Program title #241

Open nikosman88 opened 8 months ago

nikosman88 commented 8 months ago

Hello please add the value Mix 1 program Title because now it has only short title and we have a vmix list in order to be able to do something in a specific list item when this item plays on air/program1 we need the Title info that contains this value Thank you very much

thedist commented 8 months ago

This can already be achieved with triggers.

For example, if you have a list with a name listInput, and you want to do a thing when the item thirdItem is selected and is in program then you can create a trigger for the event On variable change with the variable input_listInput_selected_name. a second event on mix_1_program_name (this way it'll trigger if the list is transitioned and then the item selected, or if the item is already selected when transitioned to program).

Then you have the condition Variable: Check boolean expression, with the Expression $(vmix:mix_1_program_name) === "listInput" && $(vmix:input_listinput_selected_name) === "thirdItem"

This trigger will fire any time listItem is in mix 1 program, and thirdItem is selected.

nikosman88 commented 8 months ago

This can already be achieved with triggers.

For example, if you have a list with a name listInput, and you want to do a thing when the item thirdItem is selected and is in program then you can create a trigger for the event On variable change with the variable input_listInput_selected_name. a second event on mix_1_program_name (this way it'll trigger if the list is transitioned and then the item selected, or if the item is already selected when transitioned to program).

Then you have the condition Variable: Check boolean expression, with the Expression $(vmix:mix_1_program_name) === "listInput" && $(vmix:input_listinput_selected_name) === "thirdItem"

This trigger will fire any time listItem is in mix 1 program, and thirdItem is selected.

Thank you very much. Yes you`re right.