Extendscript - 更改 TextLayer 的字体大小

Extendscript - Change font size for TextLayer

如何简单地更改 TextLayer 的字体大小?我尝试了一切,我能找到的最新方法是使用 value.fontSize:

var comp = app.project.activeItem,
    text = comp.layers.addText();
text.property("Source Text").value.fontSize = 10; // <-- Nope ._.

像这样:

var
textProp = text.property("ADBE Text Properties").property("ADBE Text Document"),
textDoc = textProp.value;

textDoc.fontSize = 10;
textProp.setValue(textDoc);