My question is preaty simple, what is the best way to manage moving text? just like those old RPG’s where the text would show letter by letter forming phrases and eventualy scrolling down when the window got full.
this should be simple. There is a String Function called “Get Character Array from String”. This will pack your string in an array where each letter has one slot. After that, you can use a for loop and go through the array. In each loop iteration, you can append the next char to your output string. You could use a delay node to delay the next character a bit, though i have in mind that you can’t place a delay node inside the for loop body. You would need to add it inside the makro or create your own loop (by using an int index variable which gets incremented by 1 each time and a “get” node for your array where you use the index variable. You could double click a for loop to have a look at how it’s done).