Hey Guys, I have a project I'm working on for my cousin and I can't seem to figure out how to perfect a certain piece of it. Granted I haven't done this in a while so it's a bit of a re-hash for me... basically I have a few items in my XML file and I want to be able to successfully click on them and activate the hyperlink within them via my flash project.

Here is the XML Code:
<?xml version="1.0" encoding="iso-8859-1" ?>
<links>
<item number="001" label="001: Item One" url="http://www.my-eccomerce-site/item-1.html" />
<item number="002" label="002: Item Two" url="http://www.my-eccomerce-site/item-2.html" />
<item number="003" label="003: Item Three" url "http://www.my-eccomerce-site/item-3.html" />
</links>

Here is the AS2 Code:
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function()
{
var nodes = this.firstChild.childNodes;
}
{
var item;
item.url = info[i].attributes.url;
item.label = info[i].attributes.label;
item.label.onRelease = released;
}
xml.onLoad=function()
{
var props=this.childNodes[0].attributes;
var info = this.childNodes[0].childNodes;
for (var i=0; i<info.length; i++) {
gen1List.addItem( {label:info[i].attributes.label, label:info[i].attributes.label, label:info[i].attributes.url} );
}
}
//on release function
function released()
{
getURL(this._root.url);
}
xml.load("xml/items.xml");

-------------------------------------------------

By the way "gen1List" is the instance name of the list component within the flash file.
I release that it very well may be incomplete or inaccurate but as I mentioned before, it is a re-hash for me as I haven't done this in quite a while....
Any help of this would be much appreciated as it is quite urgent!