Did you guys get this working? I have been trying to build out a lower-third with two different font styles. I’m combining the source text to drive the underlying shape but I can’t get the style aspect to work.
L1 = thisComp.layer(“Main Title”).text.sourceText;
L1.getStyleAt(0,0).setText(L1);
L2 = thisComp.layer(“Secondary Title”).text.sourceText;
L2.getStyleAt(0,0).setText(L2);
L1 + “\r” + L2