# Nodes

**URL:** https://forum.kirupa.com/t/nodes/238231
**Category:** Uncategorized
**Created:** [September 8, 2007, 6:44pm UTC](https://forum.kirupa.com/t/nodes/238231 "2007-09-08T18:44:13Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Multi\_Task](https://avatars.discourse-cdn.com/v4/letter/m/c6cbf5/32.png) [@Multi\_Task](https://forum.kirupa.com/u/Multi_Task)
#### Post date: [September 8, 2007, 6:44pm UTC](https://forum.kirupa.com/t/nodes/238231/1 "2007-09-08T18:44:13Z")

</div>

I am getting an XML feed that I have no control over creating or changing.

```auto

  <?xml version="1.0" ?> 
- <root title="Goods">
- <assets>
- <row active="1" id="50">
  <meta displayname="ABCs" webicon="icons/dsabc.png" /> I am trying to get these nodes
  <runtime /> 
  </row>
- <row active="1" id="51">
  <meta displayname="Hat" webicon="icons/dscathat.png" /> 
  <runtime /> 
  </row>
- <row active="1" id="54">
  <meta displayname="Pix 3" webicon="icons/szlong.png" /> 
  <runtime /> 
  </row>
  </assets>
  </root>

```

```auto

var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function() {
var nodes = this.firstChild.childNodes.nextSibling;
numOfItems = nodes.length;
for (var i = 0; i<numOfItems; i++) {
...........
...........
xml.load("icons2.xml");

```

Would it be the nextSibling of firstChild.childNodes in this instance?
