add intro/outro hack!friday
This commit is contained in:
parent
91f8807275
commit
f9bfeee20e
7 changed files with 57 additions and 0 deletions
BIN
muccc/(Footage)/c3voc.png
Normal file
BIN
muccc/(Footage)/c3voc.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 136 KiB |
BIN
muccc/(Footage)/logo-muc3_white.png
Normal file
BIN
muccc/(Footage)/logo-muc3_white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 74 KiB |
BIN
muccc/intro.aep
Normal file
BIN
muccc/intro.aep
Normal file
Binary file not shown.
24
muccc/intro.jsx
Executable file
24
muccc/intro.jsx
Executable 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
muccc/intro.scpt
Executable file
BIN
muccc/intro.scpt
Executable file
Binary file not shown.
BIN
muccc/outro.aep
Normal file
BIN
muccc/outro.aep
Normal file
Binary file not shown.
33
muccc/schedule_hf.xml
Normal file
33
muccc/schedule_hf.xml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<schedule>
|
||||||
|
<version>1.0</version>
|
||||||
|
<conference>
|
||||||
|
<title>hack!friday</title>
|
||||||
|
<acronym>muc</acronym>
|
||||||
|
<days>1</days>
|
||||||
|
<start>2020-01-10</start>
|
||||||
|
<end>2020-01-10</end>
|
||||||
|
<timeslot_duration>02:00</timeslot_duration>
|
||||||
|
</conference>
|
||||||
|
<day index="1" date="2020-01-10" start="2020-01-10T20:00:00+01:00" end="2020-01-10T22:00:00+01:00">
|
||||||
|
<room name="Hauptraum">
|
||||||
|
<event id="8001" guid="8d8d291c-dba0-48d2-911b-1c11c9ac8a63">
|
||||||
|
<date>2020-01-10T20:00:00+01:00</date>
|
||||||
|
<start>20:00</start>
|
||||||
|
<duration>02:00</duration>
|
||||||
|
<room>Hauptraum</room>
|
||||||
|
<slug>muc-8001-hf-freecad</slug>
|
||||||
|
<title>hack!friday: freeCAD</title>
|
||||||
|
<subtitle/>
|
||||||
|
<track/>
|
||||||
|
<type/>
|
||||||
|
<language>de</language>
|
||||||
|
<abstract/>
|
||||||
|
<description/>
|
||||||
|
<persons>
|
||||||
|
<person id="1">9R</person>
|
||||||
|
</persons>
|
||||||
|
<links/>
|
||||||
|
</event>
|
||||||
|
</room>
|
||||||
|
</day>
|
||||||
|
</schedule>
|
Loading…
Add table
Reference in a new issue