Need help changing a portion of text every 'X' secs

I’m trying to do something like this, except I want the first line of my text to change to something else every 5 seconds or so.

I’ve tried to adapt the logic here to do this but I’m not getting anywhere with it. Please can someone help outline what I need to do?

Thanks.

Check out typewriter plugin. It is for sure the easiest way.

If you have special requirements regarding animation of the text, do the following:

  • Create a text element.
  • Add a state “xyz” to the text element of type number
  • Add conditions to the text element that change the text depending on the xyz number
    if text.xyz = 1 then text = “Text 1”; if text.xyz = 2 then text = “Text 2”; …
  • Under workflows, add an event “Do every X seconds”. Under this event increase the number of xyz (Set state of text.xyz = text.xyz + 1)
1 Like

Hi @mmm thanks a lot!

This topic was automatically closed after 70 days. New replies are no longer allowed.