Any way to create an "if ...then...else..." loop in terms of events
EVENT---> If Condition is true -----> action1
(subevent1) Else if condition false ----->action 2
(subevent2) Else if condition is NULL----->action 3
each subevent is ONLY called/executed if the previous or main event condition is NOT met.
that would be good. As at the mo i have this problem:
EVENT ----> if button clicked
(subevent) if logged =0 (action) logged=1, set Text2.text to "logged"
(subevent) if logged =1 (action) logged=0, set Text2.text to "Not logged"
Now when i press the button regardless of whether logged=1 or 0 it will set the Text2 text to "Not logged"