This is part of the XML:
<pubDate>Mon, 18 Nov 2013 10:43:28 +0100</pubDate>
<category>Algemeen</category>
<enclosure url="http://bin.snmmd.nl/m/m1mxwvnavj3a_sqr256.jpg" type="image/jpeg"/>
<copyrightPhoto>nu.nl</copyrightPhoto>
I know that the following for loop places childnodes in an array.
for (var i:Number = 0; i < berichtnr; i++) {
//puts title in titleArray
titleArray[i] = rssXML.channel.item[i].title;
//puts date in dateArray
dateArray[i] = rssXML.channel.item[i].pubDate;
}
I want to place the link from childnode enclosure url in an array. How can this be done?