Recursive Actions?
First of all: Sorry for my bad english
Second: Is it possible make an advanced action recursive?
The problem in detail:
I have to design an alternative memory game. So I made the slide 3 with a pattern of about 24 buttons.
A short peek-view shows the 3 right buttons. Goal of the game is to klick all 3 buttons in about 10 seconds.
If this happens the user should get to slide 5. If he klicks 1 wrong button he will get to slide 4.
I made 3 variables Button01 and gave them the literal "FALSE" - I hope this makes them boolean-like.
By klicking the right Buttons i made advanced actions, which allocats their values to the literal TRUE.
For the whole slide i made the advanced option:
IF (Button01 == TRUE && Button02 == TRUE && Button03 == TRUE)
go to layer 5 slide 5
The problem is, that this advanced action just starts if the user reaches slide 3 and after this it won't start again.
Is there a possibility to make this advanced action recursive or can I trigger it within the advanced actions of the buttons?
Thanks a lot

