I have a property change script that fires when a property that is bound to the currentWindow system tag changes. When I save updates from the designer and the clients update this script doesn't fire and the result is that a component is hidden until the currentWindow changes again.
How can I have this property change script also fire after those updates are saved?
The property change script exists on the root container of the window. I've added another property to the window that tells me if those related components are all hidden or not (binEnc() on a few component's visible prop). I added a condition to my property change script to also fire if that property equals 0 (which it never should, and only does after saving the project).
if event.propertyName == 'currentWindow' :
.
.
.
tured into
if event.propertyName == 'currentWindow' or (event.source.visibleTier2 == 0):
.
.
.