Search found 1 match
- March 20th, 2017, 5:25 am
- Forum: Scripts Discussion
- Topic: Change Font and Font Style by script
- Replies: 4
- Views: 87054
Change Font and Font Style by script
Hello, For a client, I have to change the Font of text layer with a script. I manage to change the Font itself like this: var textProp = app.project.activeItem.layer(1).property("Source Text"); var textDocument = textProp.value; textDocument.font = "Arial"; textProp.setValue(te...