Hi, I want to resize a node according to some save data whenever the user changes its width or height. So far, I’ve been able to detect it using the documentchange handler and checking for the PROPERTY_CHANGED type (more info in a prev question I posed here)
However, I want to specifically detect if the width or height of the node has changed; I want to resize the height if its width was changed, and vice versa. I’ve read in another article to try setInterval() (article here) but I’d rather avoid it for performance reasons.
Does anyone know of a more effective way to check for this using an event handler?