Question
Showing buttons being clicked
i currently follow Lilybiri advice with an advanced action to show a button after all items have been clicked
How do I show when one of these buttons has been clicked?
:
- Create a user variable for each of the buttons. I will label them v_1, v_2......v_6. They will track if a button has been clicked. Set their default value to 0 (Boolean variable).
- Group all your text containers in Gr_Text (grouping existed in CP7).
- Create a conditional advanced action with 2 decisions to be triggered by each button (I'll indicate the to be changed items in bold):
- Decision 1 'Always' is a mimicked standard advanced action:
IF 1 is equal to 1
Hide Gr_Text
Show Text_1
Assign v_1 with 1 - Decision 2: 'Checker'
IF v_1 is equal to 1 AND
v_2 is equal to 1 AND
v_3 is equal to 1 AND
v_4 is equal to 1 AND£
v_5 is equal to 1 AND
v_6 is equal to 1
Show Bt_Next
- Decision 1 'Always' is a mimicked standard advanced action:
