Push that assign value to a fader

Hi!
I need to create a button that, when pressed, set a fader at 50%
I wrote in the js file this

// STARTUP
if (address == ‘/startup’) {
all35 value = 0.5 // how to write it? (all35 is the fader and /startup is the push button)
return
}

thanks a lot!

Solved with a script, but is possible to use a custom module instead?

JS{{
set(“all35”,0.5)
}}

Yes, using the receive function you’ll be able to send messages to the interface as if they were received from an external sender. https://openstagecontrol.ammd.net/docs/custom-module/#available-globals

1 Like