advanced actions - trying to show a text caption
I have a slide with 5 text captions made from smart shapes, and 5 click boxes. All 5 smart shapes are hidden. I have 5 variables, all of which are set to zero. When a click box is clicked on, the corresponding smart shape shows and the value of the first user variable is set to one. When another click box is clicked on the corresponding smart shape shows and the next user variable is set to 1. Each of the click boxes is set up in a similar fashion. I set up 5 advanced actions, and the On Success action for each of the click boxes uses one of 5 advanced actions. The action for each click box looks something like this (I'm using generic names for this example):
IF variable1 is equal to 0
ACTIONS
Show textCaption1
Assign variable1 with 1
Play Audio sound.wav
Continue
This is working fine, and the corresponding smart shapes are showing as they should when each of the click boxes is clicked on.
But I have an additional feedback text caption that I want to show after all 5 smart shapes are showing. I tried setting up an advanced action that looks like this:
IF
variable1 is equal to 1 AND
variable2 is equal to 1 AND
variable3 is equal to 1 AND
variable4 is equal to 1 AND
variable5 is equal to 1
ACTIONS
Show feedbackTextCaption
But even after all of the click boxes have been clicked (which should set each of the 5 variables to 1), the feedback text caption does not show.
Can anyone help with a suggestion?