How do I go flip through animations in order

I’m trying to go through ‘how to’ screens. My logic is flawed but not sure how to fix it. The animation count starts at 0, but skips over animation #1 and goes on to to 2, 3,4.


I’m not sure if I see the issue, but I re-did it like this and I’ve had no issues going through each animation without skipping any! Let me know if it helps!!

1 Like

MayhemCats’ solution is probably good, but let me tell you what you did wrong…
Alright, you click on the forward button, and freeze time, slowly going through the events.
First, it notices that you clicked the forward button, and that it’s currently 0, so it sets it to 1.
But ah! The cursor is still clicking the button! It goes to the second event, notices the button is still clicked, so it adds one. That’s how you get the 0,2,3,4,5 pattern.

Toodles!

1 Like

This works perfectly. Thank you.

1 Like