Hello,
Im using this code and im trying to change weight font in my text layer.
var textProp = app.project.activeItem.layer(1).property("Source Text"); var textDocument = textProp.value; textDocument.font = "Arial-Bold"; textProp.setValue(textDocument);
But this does not Changing the font to the "Arial-Bold" font,
What did I do wrong?