admin管理员组文章数量:1340526
I'm using the After Effects CS3 Javascript API to dynamically create and change text layers in a position.
Or at least I'm trying to because I can't seem to find the right property to change to alter the actual text of the TextLayer object.
I'm using the After Effects CS3 Javascript API to dynamically create and change text layers in a position.
Or at least I'm trying to because I can't seem to find the right property to change to alter the actual text of the TextLayer object.
Share Improve this question edited Oct 11, 2017 at 3:11 Cœur 38.8k26 gold badges205 silver badges277 bronze badges asked Sep 16, 2008 at 4:44 Gareth SimpsonGareth Simpson 37.7k12 gold badges48 silver badges50 bronze badges4 Answers
Reset to default 4Hmm, must read docs harder next time.
var theComposition = app.project.item(1);
var theTextLayer = theComposition.layers[1];
theTextLayer.property("Source Text").setValue("This text is from code");
I'm not an expert with After Effects, but I have messed around with it. I think reading this might help you out.
This is how I'm changing the text.
var p = app.project.item(23);
var layer = p.layer('some_layer_name');
var textProp = layer.property("Source Text");
var textDocument = textProp.value;
textDocument.text = "This is the new text";
textProp.setValue(textDocument);
I wrote a simple function for myself to change properties. Here it is:
function change_prop(prop, name, value){
var doc = prop.value;
doc[name] = value;
prop.setValue(doc);
return prop;
}
Example use:
// 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)
本文标签: javascriptProgrammatically change the text of a TextLayer in After EffectsStack Overflow
版权声明:本文标题:javascript - Programmatically change the text of a TextLayer in After Effects - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743642363a2514930.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论