Changes for page Mission Director Guide
Last modified by Klaus Meyer on 2025/03/31 16:39
From version 31072.1
edited by Daniel Turner
on 2023/04/14 17:05
on 2023/04/14 17:05
Change comment:
There is no comment for this version
To version 31070.1
edited by Daniel Turner
on 2023/04/14 17:02
on 2023/04/14 17:02
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -80,26 +80,13 @@ 80 80 81 81 (% style="color: rgb(0,0,0);text-decoration: none;" %)The XML root node of an MD file is called “mdscript” and looks like this: 82 82 83 -{{code language="xml"}} 84 -<?xml version="1.0" encoding="utf-8"?> 85 -<mdscript name="ScriptName" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="md.xsd"> 86 -{{/code}} 83 +{{code}}<?xml version="1.0" encoding="utf-8"?><mdscript name="ScriptName" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="md.xsd">{{/code}} 87 87 88 88 (% style="color: rgb(0,0,0);text-decoration: none;" %)“ScriptName” is the name used for this script regardless of the file name. It (%%)**(% style="color: rgb(0,0,0);text-decoration: none;" %)has to start with an upper case letter and must be unique(%%)**(% style="color: rgb(0,0,0);text-decoration: none;" %) among all MD script names. It also should not contain spaces, so other MD scripts can use it as an identifier to access this script’s contents easily. 89 89 90 90 (% style="color: rgb(0,0,0);text-decoration: none;" %)The only allowed sub-node of <mdscript> is <cues>, which can only contain <cue> sub-nodes: 91 91 92 -{{code language="xml"}} 93 -<?xml version="1.0" encoding="utf-8"?> 94 -<mdscript name="ScriptName" ...> 95 - <cues> 96 - <cue name="RootCue1"> [...] 97 - </cue> 98 - <cue name="RootCue2"> [...] 99 - </cue> 100 - </cues> 101 -</mdscript> 102 -{{/code}} 89 +{{code}}<?xml version="1.0" encoding="utf-8"?><mdscript name="ScriptName" ...>  <cues>    <cue name="RootCue1"> [...]    </cue>    <cue name="RootCue2"> [...]    </cue>  </cues></mdscript>{{/code}} 103 103 104 104 (% style="color: rgb(0,0,0);text-decoration: none;" %)  105 105