Close an activity

GaNdAlF89

Active Member
Licensed User
Longtime User
I have three activities, A,B and C. From activity A I start B, from B I start C. Now I want to close activity C and return to A, but by closing activity B. How can I do?
 

JonPM

Well-Known Member
Licensed User
Longtime User
You can create a variable under Process_Globals and set to false. When B starts set it to true. When you close C, check if B variable is true, and if true close B in Activity Resume.
 
Upvote 0
Top