<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
<br>Here's the structure being read into templateData:<br><br>&lt;brand&gt;<br>&nbsp; &lt;background graphic="intromen_ease.gif" x="0" y="0" w="100" h="200"&gt;<br>&nbsp; &lt;/background&gt;<br>&nbsp; &lt;navigation&gt;<br>&nbsp;&nbsp;&nbsp; &lt;back swf="btnBack_ease.swf" tooltip="Previous page Shortcut-key: Alt+Left" x="100" y="200" w="100" h="200"&gt;&lt;/back&gt;<br>&nbsp;&nbsp;&nbsp; &lt;next swf="btnNext_ease.swf" tooltip="Next page Shortcut-key: Alt+Right" x="200" y="200" w="100" h="200"&gt;&lt;/next&gt;<br>&nbsp;&nbsp;&nbsp; &lt;home swf="btnHome_ease.swf" tooltip="Unit home page Shortcut-key: Alt+Home" x="300" y="200" w="100" h="200"&gt;&lt;/home&gt;<br>&nbsp;&nbsp;&nbsp; &lt;open swf="btnOpen_ease.swf" tooltip="Open a unit Shortcut-key: Ctrl+O" x="400" y="200" w="100" h="200"&gt;&lt;/open&gt;<br>&nbsp;&nbsp;&nbsp; &lt;dict swf="btnDict_ease.swf" tooltip="Show the Dictionary" x="500" y="200" w="100" h="200"&gt;&lt;/dict&gt;<br>&nbsp;&nbsp;&nbsp; &lt;copy swf="btnCopy_ease.swf" tooltip="Copy text to your scrapbook" x="600" y="200" w="100" h="200"&gt;&lt;/copy&gt;<br>&nbsp; &lt;/navigation&gt;<br>&lt;/brand&gt;<br><br><br>inspect(templateData.brand[0].navigation[0])<br>
<br>
gives me 6 children:<br>
<br>
copy : null<br>
dict : null<br>
open : null<br>
home : null<br>
next : null<br>
back : null<br><br><br>debug(templateData.brand[0].navigation[0].childNodes.length);<br><br>gives me 4<br><br><br>fah.<br><br><br><br><br>                                               </body>
</html>