Hello, I need to uncheck a toggle button set from “outside” via a simple trigger – say, reset all of the toggle buttons to unchecked.
Any suggestions? I could do that using an additional toggle button, but would have to transfer a quite sensible set of bindings from an existing button to the new “reset”-toggle button.
Any suggestions? Thanks in advance!
Micha
Hi @marnold,
I can see you have submitted a support ticket on this topic, one of our team will answer you there
Kind Regards
Louie
Hey there, in case anybody finds this thread, I do this all the time. If you have toggles within a collection you can do a couple things depending on your use-case:
- Create a toggle button off-scene that is in the same toggle set. By checking that toggle, it will uncheck all others within that set, including those within the collection.
- Bind your toggles checked-state to a counter IA, (Count) with a converter “is equal to 0” Your counter IA should have initial value set to 1, and no max value. Now, every time you ADD ONE to your counter, it will uncheck all your toggles. This is because your toggles will only ‘check’ when the value is 0, and the counter will never get there, even after resets to the initial value.
Hope this helps.