im making flash thats going to show events for the bars/clubs around the area i have
id, bar, time_date, info fields in mysql db
all is working great
http://www.wncnightlife.com/event.html
so basicly the php logs on grabs the mysql db then codes it into xml for flash to read...
my issue is i want it to be AS3 not 2 and anyway to convert my AS2 code to 3
this is the code
var theXML:XML = new XML ();
theXML.ignoreWhite = true;
theXML.onLoad = function() {
var nodes = this.firstChild.childNodes
for(i=0;i
theList.addItem(nodes[i].firstChild.nodeValue,i);
}
}
theXML.load("http://www.wncnightlife.com/events.php");
thank you for your time
-summey