closed
Public

If I understand how the Loop action is implemented, it should execute the actions under the loop exactly N times.

Thus, if I created a loop for 2 times, set a visible element to toggle its visibility after 500 Milliseconds, the expected behavior would be to see the element “Flash” two times.

However, doing this does not work. It will Flash only once.

Am I doing something wrong or do I misunderstand how looping works?

thanks

1 answer

There is a limitation in the loop, if you want to make animation, you need to make the loop structure like this:

LOOP x 2
Pause 500 ms
Toggle Visibility

The pause action can be regarded as a delay of the following actions, so it should not be placed at the end of the loop, otherwise it will not work.

We will declare this in the help document (coming soon).

#1

This question is now closed