Need to go from this xml to a map and back again:
parts in red indicate where map parts should be exported/imported to/from.
<TopicTitleConcatenated template="template name">
<frametitle><![CDATA[Topic Title As Is]]></frametitle>
<textfield instance="body"><![CDATA[Topic Notes]]></textfield>
<link goesto="subTopicTitleConcatenated_1"><![CDATA[Sub Topic As Is]]></link>
<link goesto="subTopicTitleConcatenated_2"><![CDATA[Sub Topic As Is]]></link>
</TopicTitleConcatenated>
<subTopicTitleConcatenated_1 template="template name">
<frametitle><![CDATA[Sub Topic Title As Is]]></frametitle>
<textfield instance="body"><![CDATA[Sub Topic Notes]]></textfield>
<link goesto="subTopicTitleConcatenated_3"><![CDATA[Sub Topic As Is]]></link>
<link goesto="subTopicTitleConcatenated_4"><![CDATA[Sub Topic As Is]]></link>
</subTopicTitleConcatenated_1>
All Map Topics in a map would be writen as its own set of these tags and appended to a single xml file between the following tags:
<?xml version="1.0" encoding="UTF-8" ?>
<module>
<screens firstScreen="intro">
append here
</screens>
</module>
Any ideas?