I'm wondering if it's possible to detect if a screen has been closed?
In one function, it's possible that a screen I'm working with would have been closed. Once that method exits, additional code runs that may need to execute a different path depending on if that screen was closed or not. In this case, I can't simply go by the return value of that first method.
I tried checking that object to see if it is = invalid, but that doesn't work.
Any ideas? Thanks