intro/outro GPN19

This commit is contained in:
derchris 2019-05-29 00:16:46 +02:00
parent fc97c398ad
commit 62e5f53e88
11 changed files with 117385 additions and 0 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

File diff suppressed because one or more lines are too long

BIN
gpn19/intro.aep Normal file

Binary file not shown.

24
gpn19/intro.jsx Executable file
View file

@ -0,0 +1,24 @@
var comp;
for (var i = 1; i <= app.project.numItems; i ++) {
if ((app.project.item(i) instanceof CompItem) && (app.project.item(i).name === 'intro')) {
comp = app.project.item(i);
break;
}
}
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();

BIN
gpn19/intro.scpt Executable file

Binary file not shown.

BIN
gpn19/outro.aep Normal file

Binary file not shown.