03-15-2020 11:12
03-15-2020 11:12
Whenever I launch an app with launchApp, it returns to one level above the calling app. and not to the app itself. Is there a coding solution to force launchApp to return to the place it was called-- a newby
03-15-2020 12:42
03-15-2020 12:42
I suspect that launchApp isn't like calling a subroutine; it closes your app before running the requested app. When the requested app closes, yours is restarted (from scratch).
You might be able to simulate the effect you want by storing some state info in the file system prior to calling launchApp. Whenever your app starts, read that info and respond accordingly.
03-15-2020 13:32
03-15-2020 13:32
Yes, I think you are right. I will keep playing with it.