-
Create Line Break After X Number of Characters
Hello,
I have a lower third that I’ve created in after effects that I would like to be editable in Premiere using CC 2014’s new template text feature. There are two lines on the lower third and I’d like to create a text box that automatically moves to the next line when it reaches the edge of the graphic. There doesn’t appear to be a way to create a line break in the text from After Effects inside Premiere. I know I could just create second text box in after effects but I’d really like it to just show up as one field for the editor inside of Premiere. I’m trying to create an expression that would automatically add line breaks to a source text layer after x number of characters, but can’t quite figure out how to make it to work.
If anyone has any thoughts on how to make this possible I’d greatly appreciate the help!
Thanks,
– Bryce P.// rough though for the codetxt = value
if (thisComp.layer("Overlay TXT Here").text.sourceText.length >= 61)
txt + "\r"// the bit I'm missing here is how to tell after effects to inset the "\r"
at a specific position in the string