In Q-SYS Designer there are a number of places that have a group of toggle type buttons that operate independently. For example, the Mixer Solo buttons. At times you may find a reason to have these buttons act like radio buttons. With the following script, you can make a group of toggle type buttons into radio buttons, allowing only one button active at a time. The Control Pin outputs of the buttons in the group connect to the Script inputs. In this example the Solo buttons normally act independently, with the script, they now function like radio buttons.
Lua Script
-- Radio Buttons, turn off all but the control that changed
function exclude( ctl )
if ctl.Value == 1 then
for i, c in ipairs( Controls.Inputs ) do
if c ~= ctl then
c.Value = 0
end
end
end
end
-- assign function to control change
for ix, ctl in ipairs( Controls.Inputs ) do
ctl.EventHandler = exclude
end