Hi Dave,
I've created a preset menu that sets the values of several faders, which works perfectly. However, I'd like the user to be able to re-select the same preset to reset the faders after they've been manually moved. Currently, the bindings only fire when a different option is selected, presumably because the menu's value hasn't changed.
Is there a documented, XML-only way to force an <option> to re-trigger its bindings when it's already the active selection?
Thanks for your amazing work on this platform!
Part example of current menu:
<menu x="230" y="175" width="140" height="30" placeholderText="Mixer Presets..." tags="mixer_menu" value="1">
<option name="Default">
<binding type="control" level="ui" tags="close_fader" parameter="VALUE" translation="fixed_value" translationValue="0"/>
<binding type="control" level="ui" tags="decca_fader" parameter="VALUE" translation="fixed_value" translationValue="80"/>
</option>
</menu>