Sorry I posted the above quickly on my phone, I should specify some more.
I could achieve the above using dynamic images as buttons and having an empty image when the input value = 0 however, the space still remains clickable even when no image is present, I would like that when the input value = 0 that the elements are actually hidden so the command cannot be sent even by clicking on the empty space where the button was.
You need the Button component. It has “Bound Property” where you can choose “Visible”. And specify the Input channel property. This channel controls visibility.
Perfect that works, didn’t realise what the bound property actually did.
Now is it possible to make it appear on a 0 and disappear on a 1? So far from my testing it works the opposite way and I can’t seem to find a way to change it. What controls the bound property logic?
Now is it possible to make it appear on a 0 and disappear on a 1?
Use a formula for an appropriate input channel to convert value.
Example: Cnl > 0 ? 0 : 1
What controls the bound property logic?
Buttons only as I remember. The proper way is creating a flexible mechanism to bound any property of any component to a channel. I hope we will do it in the future.