Is there a way to hide an element when you click basically anywhere outside of that element? I'm trying to make a popup menu that stays visible until you choose a menu item or click somewhere else on the canvas.
There's canvas-level interactions, but not one for Click (Tap). This would be the most obvious way for me to achieve this. Click (Tap) the canvas to hide the element.
Hey @Nathan Marrs
A work-around I've used in the past was to add a layer the size of the canvas, make the opacity 0% (or use the hotspot tool) and put it in the popup group as the bottom layer. Then add the on click > hide functionality to that layer to hide the whole popup.
Hope it helps!
Yup, this is what I ended up doing as a work-around. Glad to know I'm not the only one. Thanks for the suggestion!