Scrolling text or typing text

Is there a way to make something like an opening from Starwars or the typing text ( say like Metroid for example) be done with the UMG widgets?

sure
1st:
create a Wrapbox into your Widget.

2nd:
create a new Widget with only a Text inside. Make the Text empty and a Variable.

3rd:
In your first Widget, take a String and parse it into array. This will give you every word of the string as a single array field.

4th:
Iterate in a Loop through the Array and read every sign of each word.
For each sign, add a new child Widget to the Wrapbox - We’ll use the second Widget for it (the Text). And change the TextWidgets Text via SetText, to the given sign.
whenever reaching the last sign of a Word, add a Space " " to it.

Additional:
If you want to delay each sign befire beeing shown, you don’t want to use a For-/While Loop, since those iterate completely within one frame.
Better create your own loop by checking if CurrentInt is same as MaxInt. If false, do the start allover again and add 1 to the CurrentInt… this way you can add a “Delay” Node to it, that actualy works :wink: