Hi @Mehl ,
You have to set the slave toggle's Default: property to the master toggle value and reset it any time you want the slave to load the default value. It's probably easier to see than it is to explain - set up this example so you can see how this works;
Add a toggle control, name it "masterToggle"
Set the OnChange: property to
Set(resetSlaveToggles, true);Set(resetSlaveToggles, false);
On another screen add another toggle, name it slaveToggle_1
Set the Default: property to
masterToggle.Value
and set the Reset: property to
resetSlaveToggles
copy and paste the slaveToggle control a few times. You can stick some on the same screen as the masterToggle if you like as well, just to observe the behaviour a little easier. You can independently change slave toggles, but as soon as you change the masterToggle, they will all revert to the masterToggle value.
Hope this helps,
RT