I have a series of string and numeric variables, which I enable and disable via a property node in an event structure using a simple boolean (labelled 'enable').
I am writing code that remembers what state 'enable' was in (saving a simple text file). I want to be able to press another boolean, a load button say, to get this file and use it to change the state of 'enable'. Basically loading previous settings. Changing the state of 'enable' programmatically does not trigger the event structure; only a manual click of the mouse does.
Is there any way to force an event structure to trigger from a programmatical change AND a mouse click in 'enable'? If so, how?
If not, any suggestions?
I've written a simple test program that illustrates what I mean, if that helps.
Paul