28
|
1 |
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
|
2 |
<creatorscript schemaVersion="1.0" scriptVersion="1.0"
|
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4 |
xsi:noNamespaceSchemaLocation="creator.xsd">
|
|
5 |
|
|
6 |
<!-- Create a note -->
|
|
7 |
<note>
|
|
8 |
<fields>
|
|
9 |
<text>This is a Creator example note!</text>
|
|
10 |
</fields>
|
|
11 |
</note>
|
|
12 |
|
|
13 |
<!-- Create 3 random notes with default content -->
|
|
14 |
<note amount="3">
|
|
15 |
<fields>
|
|
16 |
<text/>
|
|
17 |
</fields>
|
|
18 |
</note>
|
|
19 |
|
|
20 |
<!-- Create a random note with maximum length -->
|
|
21 |
<note>
|
|
22 |
<fields>
|
|
23 |
<text randomlength="max"/>
|
|
24 |
</fields>
|
|
25 |
</note>
|
|
26 |
|
|
27 |
</creatorscript>
|