Hey Leo!
Not sure if it’s been requested yet but noticed all the buttons on the current beta are Momentary.
Any chance we could get toggle buttons too?
E.g. When I solo click with ‘click/solo 1” the button stays depressed and I know the click is solo’ed. Pressing again releases the button and sends command ‘click/solo 0’.
It would be the last thing keeping me from migrating from other osc apps 
Thanks for all your work
Hey @CharlesM1725, thank you for your suggestion!
I’m thinking of adding a feature like this in the future. In the meantime, you can use the button’s dynamic color to indicate whether a section is currently soloed. For example, this would make the button light blue when it’s soloed and dark blue when it’s not:
${osc("/mixer/click/soloed") ? "blue-400" : "blue-900"}
To toggle the solo state, you can then send the following OSC to AbleSet:
/mixer/click/solo toggle
Let me know if this works for you 
ooh i’ll try that thanks!