Progress bar change every 60 sec

I would like to have a linear progress bar that goes from left to right for 60 sec then comes black for 60 sec and restart from left to right for 60 sec and …

Is it possible, i cannot find a way to do it!

A progress bar is just two images with one covering the other. Create your own.

If it doesn’t depend on starting at 1 second then use animation. If it depends on the second then you can use tags.

Ron
Samsung Developer Relations

with tags it is really fast one

1 Like

Thank you, i will try it :grinning:

1 Like

If you expect one minute to be filled to the right and the other minute to be emptied to the left,
you can try

([MIN]%2==0?[SEC]:60-[SEC])
for discrete movement

or

([MIN]%2==0?[SEC_MSEC]:60-[SEC_MSEC])
for smoother movement

1 Like