Hello! I've successfully implemented a typewriter text effect into my project, after finding out how on these forums. What I wanted to do now though was see if I could make a function out of it, so that I could use it to feed any text into.
So far this is working for me
+Function on "typeWriter"
(sub) +For "typeWriter" from 0 to (len(Function.Param(0))
-left(Function.Param(0), counter)
-Add 1 to counter
So I pass the text string to it, and it does write it out. The problem I'm having is that I can't delay the characters to make the actual 'typewriter' effect. I've tried putting a Wait in the function, but either it gets ignored or returns 0 to the textbox. I'm not sure on how to get it working from there. Am I just doing it wrong? Thanks!