Hey Brother,
I am working on a video project where I need to do exactly this process of one word after the other word as outlined in the previous post by Jimmy Corrigan:
“I was looking for something like this:
in the middle of the screen there is the word “SUPER”. font size 16pt, font helvetica.
2seconds later the word “SUPER” will be replaced by the word “POWER” (same font style)
another two seconds later the word “POWER” will be replaced by the word “AWESOME”…
(transitions are not necessary. hard cuts would be enough) and so on and so on.”
The issue I am having is that I don’t know a dam thing about expressions so I’m not sure where to plug and play the information within the expression you provided.
t = value.split(” “);
myText = “”;
for (var i = 0; i < Math.floor(effect(“Word”)(“Slider”)); i++) {
if (i > 0) myText += ” “;
myText += t[i];
}
myText;
This is the paragraph of text I need to display words one after another theoretically with a 0.25 second length of time for each word:
“What is meant for me will come to me effortlessly I accept what comes and what goes I practice non-attachment because I know what is meant to be will be”
Would there be anyway you could possibly walk me through the process of using this awesome expression you created!?