diff --git a/.gitignore b/.gitignore index 6c60745..87676a5 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ schedule.de.xml .gen.svg snapshot-*.png env +.DS_Store diff --git a/dcgtw/(Footage)/voctomix_background_tutzing.png b/dcgtw/(Footage)/voctomix_background_tutzing.png new file mode 100644 index 0000000..ac4a070 Binary files /dev/null and b/dcgtw/(Footage)/voctomix_background_tutzing.png differ diff --git a/dcgtw/intro.aep b/dcgtw/intro.aep new file mode 100644 index 0000000..ee270e1 Binary files /dev/null and b/dcgtw/intro.aep differ diff --git a/dcgtw/intro.jsx b/dcgtw/intro.jsx new file mode 100644 index 0000000..eb0e1be --- /dev/null +++ b/dcgtw/intro.jsx @@ -0,0 +1,23 @@ +var comp; +for (var i = 1; i <= app.project.numItems; i ++) { + if ((app.project.item(i) instanceof CompItem) && (app.project.item(i).name === 'text')) { + 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(); diff --git a/dcgtw/intro.scpt b/dcgtw/intro.scpt new file mode 100644 index 0000000..edfa435 Binary files /dev/null and b/dcgtw/intro.scpt differ diff --git a/dcgtw/outro.aep b/dcgtw/outro.aep new file mode 100644 index 0000000..59d098a Binary files /dev/null and b/dcgtw/outro.aep differ diff --git a/dcgtw/pause.aep b/dcgtw/pause.aep new file mode 100644 index 0000000..c8e96e0 Binary files /dev/null and b/dcgtw/pause.aep differ