The same buttons on screenA, screenB and screenC are going to call screenD. screenD needs to know which screen to go back to once it's closed.
My intent is to pass the calling screen's name in as a parameter i.e. give each screen's 'Touch: Action Type:Screen' a custom parameter 'calling_screen:scrA'.
So:
screenA > btnGO > Action: Screen > Parameters > calling_screen (custom param): screenA
screenB > btnGO > Action: Screen > Parameters > calling_screen (custom param): screenB
screenC > btnGO > Action: Screen > Parameters > calling_screen (custom param): screenC
The question is, how can screenD access this parameter?
screenD > btnRETURN > Action: Screen > Parameters > Screen : calling_screen
Or is there a better way to do this?
I had a method where the two screens set and got an app-level variable but there's got to be a way to access that parameter directly. Alternately, I could do it using Lua, but that too seems like overkill.
