如何使用 ExtendScript 在 After Effects 中创建文本框?

How to create a text box in After Effects using ExtendScript?

我正在尝试使用 extendscript 在 After Effects 中创建一个文本框,就像您使用文本工具并单击并拖动一个框时的文本框一样。我能找到的每一个资源都只展示了如何在文本周围制作一个实际的框,但我只想要文本框,以便文本在使用大字体时换行并且不会超出构图的范围。这是我目前所拥有的:

function createText(text, startTime, endTime, font)
{
var textLayer = newComp.layers.addText(text);
var sourceText = textLayer.property("Source Text").value;
sourceText.fontSize = 200;
sourceText.font = font;
textLayer.property("Source Text").setValue(sourceText);
textLayer.startTime = startTime;
textLayer.inPoint = startTime;
textLayer.outPoint = endTime;
var textRect = textLayer.sourceRectAtTime(0,false);
textLayer.property("Position").setValue([newComp.width/2,newComp.height/2]);
textLayer.property("Scale").setValue([100,100]);
}

我要创建的文本框类型:

要创建段落(框)文本图层,请使用 addBoxText() 方法而不是 addText()。这采用指定文本框大小的参数 [width, height]

You can read the docs here