-
Type on Text Expressions
Working on a command-line style end crawl for a project. The text was made in Photoshop and brought into AE, with the following expressions applied:
to Source Text:
L = text.sourceText.length;
T = time*effect(“Speed”)(“Slider”) -effect(“Start At”)(“Slider”)*effect(“Speed”)(“Slider”);
F = Math.round(time % 1);
if (F==1 | (T>L & T>0) ){Fl=”_”;} else(Fl=””)
substr (0,T)+Flto Position:
pLine=this.sourceRectAtTime(time).height;
value-[0,pLine];Works fine, but one portion of the original text is intended as a different font size than the rest. The expressions cause the font to change scale to match the existing text (i.e. main credits are size 18, special text is size 12, but is upscaled to 18 by the expression). Is it possible to fix via editing the expression?