After Effects - Typewriter add slide control for speed and length
Hello - I want to use the preset typewriter for several blocks of text. I want the text to appear consistently at the same speed and possibly stop mid way through then continue with the same speed as before. I would like to use an expression since it would be very tedious to use keyframes. The block of texts are often different lengths.
I would like ABCDE to type on the same speed as DKSOEKDKSKKD, DK…would take longer since it is longer, but character appear at the same speed. But be able to pause, example DKSO for 2 sec before continuing on at the same speed as before adding the rest of the text.
I found an expression that controls the speed, so it is consistent between text blocks, but how can add a slider to control length of completion, but keep the same speed control?
It = time - thisLayer.inPoint;
T = It * effect("Speed")("Slider");
F = Math.round(It % 1);
if (F == 1 | (T, 0)) {
Fl = "";
} else {
Fl = " ";
}
substr(0, T) + Fl
The original had L = text.sourceText.length; but there was nothing “tied” to this expression.
