I have a few global objects (sprites and buttons). On most layouts I want them, but on a few I don't want those. On the layouts where I don't want them I destroy them (I can't just mark them invisible for WCAG reasons). If i go to a layout where I don't want them, and then do to a layout where I do want them I would like to be able to do something like:
if (Sprite.count < 1) : create Sprite at Position 50,200 on Layer O
However, i don't think "is visible" or "is on screen" are what I'm looking for in the conditions.
And, "spawn another object" doesn't work in the conditions either.