mrmcd2018: Intro hinzugefügt.

This commit is contained in:
Thorsten Fleck 2018-09-02 21:47:06 +02:00
parent 7dbd4cc09d
commit c3e31c9f33
11 changed files with 766 additions and 0 deletions

18
mrmcd2018/intro.jsx Normal file
View file

@ -0,0 +1,18 @@
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();
app.quit();