Add generator for Adobe After Effects + Template

This commit is contained in:
derchris 2018-04-09 02:10:19 +02:00
parent 17536a75a7
commit b9e7f008d0
5 changed files with 183 additions and 0 deletions

17
voc_ae/intro.jsx Normal file
View file

@ -0,0 +1,17 @@
var comp = app.project.item(2);
var layer_title = comp.layer('intro_title');
var textProp_title = layer_title.property("Source Text");
var textDocument_title = textProp_title.value;
var layer_persons = comp.layer('intro_personnames');
var textProp_persons = layer_persons.property("Source Text");
var textDocument_persons = textProp_persons.value;
textDocument_title.text = "$title";
textProp_title.setValue(textDocument_title);
textDocument_persons.text = "$personnames";
textProp_persons.setValue(textDocument_persons);
app.project.save();