
Re: Enable/disable components between windows
If the other window is open, you can do this directly without needing client tags. You can get a reference to the other window using
Code:
window = system.gui.getWindow('windowName')
You can then get a reference to any control in the window using something like
Code:
window.getRootContainer().getComponent('buttonName')
depending on where the control is in the hierarchy.