DISABLE TRIGGER WHEN LAYER IS REVISITED

Jul 28, 2021

Hello Heroes

Can anyone tell me how to deactivate a trigger (animation on slide) when that particular slide is revisited a second time?

Lena

2 Replies
Nejc Žorga Dulmin

In order to know that this is the second visit, you need to first remember you have been here before. You can remember it using a variable.

What I would do is have a true/false variable (default value = False), which I would change to TRUE once the animation is completed (adjust variable X when animation X is complete).

Then you add a condition to your animation trigger, that says "On condition that MyVariable is False" -> which means it won't execute when the variable is True.

I hope this helps!