12-15-2014 09:33 AM
This may be a silly question...but is it possible to wire two controls so that they affect the other?
Specifically:
I have control A and B and want them to sum to 10. Changing control A will affect the display of B in real time, and vice versa.
Solved! Go to Solution.
12-15-2014 09:47 AM
Use an event structure to key in on the value change of A. In it, you do the math and update B with a local variable. Do the same thing with the value change of B to update A.
12-15-2014 10:02 AM
Thanks. I had to fiddle a bit with the location of the inputs and whatnot, but it seems to work without issue!