Skip to main content
Participant
October 23, 2017
Question

Showing buttons being clicked

  • October 23, 2017
  • 3 replies
  • 177 views

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
    This topic has been closed for replies.

    3 replies

    Participant
    October 25, 2017

    Just found why they were grey, needed action to be custom. However doesnt quite show when one button has been clicked.....what am I missing

    Lilybiri
    Legend
    October 25, 2017

    Can you show the advanced action? Normally you should have to change only for 'All conditions'.to "Any condition" ton replace all the AND by OR.

    Participant
    October 24, 2017

    Thankyou, however my AND\ OR section is greyed out and cannot be changed

    Any idea on how to change it

    Lilybiri
    Legend
    October 24, 2017

    Can you post a screenshot? What do you mean by 'greyed out'? Which version are you using, please?

    Lilybiri
    Legend
    October 23, 2017

    Change the AND in the condition to OR.