Timer inside a timer

Hi!

I want to make the text appear every 1 minute, let the user read it for 5 seconds and then hide it again. It should be an endless loop.

So I need two Clocks, but it is impossible to put one Clock inside another and there is no a delay function :frowning:

I searched high and low but can't find an answer, can you help me please?

But you could run them side by side

You use a clock timer :wink:

Example:

image

1 Like

Or you can use only one clock...

set interval in initialize to 60000, and when timer fires, you check the interval to set 5s or 60s and to set label.visible to true or false

1 Like

This is all you need:

1 Like

Thank you, guys!!!
I tried all the 3 decisions, they all work wonderfully :blush:
Thank you very much :hugs: