Is it possible to determine when an object goes off-screen? The visible property does not change, and I've also tried to detect the parenting for example if(!stage.contains(this)) but even though my component is nested inside a ViewStack when the stack changes the above statement always returns true.
I read documentation about off-list display objects. I would think when a ViewStack changes, the children that are not visible on the screen would become off-list, no?

