I would like to provide a global switch via layout options that will mute video sound (for every video in layout).
Below you will find my code.
//define layout option entry
class UserConfig {
</ label="Mute video snaps sound", help="yes = sound disabled, no = sound enabled", options="yes,no" /> mute_videoSnaps="no";
}
//when mute sound = YES in layout options - define variable "videoSound" (that will be used globally)
//that will mute sound
if ( my_config["mute_videoSnaps"] == "yes")
{
local videoSound = Vid.NoAudio;
}
//video an cab screen
local cabScreen = fe.add_artwork ("snap", 300, 300, 400, 300);
cabScreen.video_flags = videoSound;
Unfortunately - this is not working

If I hard code
local videoSound = Vid.NoAudio;
it is working correctly.
But when I try to make this happend via layout options - no go.
---
I'll just add that I know that video sound can be disabled globally in AM (in SOUND options) - but I want it to be disabled for particular layout, not for all layouts.