Forum Discussion
Variable triggered states across slides
Hi Natalie, the thing to remember here is that the Master slide reloads from the start, every time you move to a new slide. So those states on the blue correct/incorrect circles will also reload to their starting value (ie. "normal")
If you want to make it work and keep the structure as you have it, you will need to do quite a few things - set up a variable for each question which can record if the question has been asked, and if they got it correct/incorrect. (a number variable could do all of this - 0=unasked, 1=correct, 2=incorrect)
Then add triggers on your Master Slide for each blue circle, changing its state based on the variables above. This should be set to happen "WHEN timeline starts".
A neater, more elegant way could be achieved by using javascript here to monitor an array of numbers for each question, but Im not sure if you feel confident diving in to JS.