Copy link to clipboard
Copied
I'm trying to generate some text on a video via a .JSX script. So far, I've been able to change the font properties via script like so:
var textProp = layer.property("Source Text");
var textDoc = textProp.value;
textDoc.fillColor = [1, 0, 0];
textDoc.fontSize = [50];
textDoc.smallCaps = true
No, faux text styles cannot be set via script. You have to use an actual SC font and reference that if it really matters.
Mylenium
Copy link to clipboard
Copied
No, faux text styles cannot be set via script. You have to use an actual SC font and reference that if it really matters.
Mylenium