3

我正在使用 After Effects CS3 Javascript API 来动态创建和更改合成中的文本层。

或者至少我正在尝试,因为我似乎无法找到正确的属性来更改以更改 TextLayer 对象的实际文本。

4

4 回答 4

3

嗯,下次必须更努力地阅读文档。

var theComposition = app.project.item(1);
var theTextLayer = theComposition.layers[1];
theTextLayer.property("Source Text").setValue("This text is from code");
于 2008-09-16T14:41:11.527 回答
2

我不是 After Effects 的专家,但我已经搞砸了。我认为阅读本文可能会对您有所帮助。

于 2008-09-16T04:49:08.657 回答
1

这就是我更改文本的方式。

var comp = app.project.item(23);
var layer = comp.layer('some_layer_name');
var textProp = layer.property("Source Text");
var textDocument = textProp.value;

textDocument.text = "This is the new text";
textProp.setValue(textDocument);

于 2015-03-04T02:00:00.313 回答
0

我为自己编写了一个简单的函数来更改属性。这里是:

function change_prop(prop, name, value){
    var doc = prop.value;

    doc[name] = value;
    prop.setValue(doc);

    return prop;
}

示例使用:

// Changing source text
change_prop(text_layer.property("Source Text"), "text", "That's the source text");

// Changing font size
change_prop(text_layer.property("ADBE Text Properties").property("ADBE Text Document"), "fontSize", 10)
于 2020-01-25T22:09:38.887 回答