Say I have the following:
-> Event | Condition
--> Sub-event | Condition
-> Else
I understand that Else will take effect if the previous Event was false. In this case, does the Else wait for the Event or Sub-event to be false, since both come prior. However, to my thinking, the Sub-event is still part of the main Event, so it shouldn't matter, yes/no?
So...let's say......
-> Event | Condition TRUE
--> Sub-event | Condition FALSE
-> Else ...?...
Similarly...
-> Event | Condition FALSE
--> Sub-event | Condition Doesn't run...
-> Else TRUE......right?
How does the Sub-event's true/false status play into the outcome of the Else condition since both the Event and Else are on the same level? Is the Sub-event viewed as an extension of the Event in the eyes of Else, or is the Sub-event still part of the Event and factor into the overall true/false?
Additionally...
I'm using a For Each to check the conditions of each instance of an object. Some instances may have true statements, others false. Will the Else condition take that into account?
-> For Each | Instance 0 TRUE
-> Else ...?...
-> For Each | Instance 1 FALSE
-> Else ...?...
Thank you for your help!