Hello,
You are talking about 6.0.1.240 I think (little typo).
It will be necessary to have a user variable, to track which option has been chosen. And then add a conditional action at the end of group A, in which you check the value of that variable and jumps either over those group B slides (if the variable is A) or just Continue.
Steps:
- Create a user variable v_choice with a default value of 0
- To Button 1 add a standard advanced action, that assigns the value of A to v_choice and jumps to first slide of group A
Assign v_choice with A
Jump to Slide A_first - To Button 2 add a standard advanced action, that assigns the value of B to v_choice and jumps to first slide of group A
Assign v_choice with B
Jump to Slide B_first - Button 3 can just have the simple action that you have for the moment.
To the On Exit event for the last slide of group A you'll have to add this conditional action:
IF v_choice is equal to A
Jump to Slide_End
ELSE
Continue
Lilybiri