Glad it worked. If you wanted to loop through all of the status in the XML file you could do something like this:
js code:
getTwitterStatusFromXML ( 'http://www.twitter.com/status/user_timeline/p3acemak3r.xml' );
function getTwitterStatusFromXML ( url )
{
var xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
var xmldom = new ActiveXObject('Microsoft.XMLDOM');
xmldom.async = true;
xmlhttp.open('GET', url, true);
xmlhttp.onreadystatechange = function()
{
if (xmlhttp.readyState === 4 && xmlhttp.status === 200 )
{
xmldom.loadXML ( xmlhttp.responseText );
var oXmlArray = xmldom.selectNodes ( '//statuses/status/text' );
for ( var i=0; i<oXmlArray.length; ++i )
{
Debug.Trace ( oXmlArray[i].text );
}
}
}
xmlhttp.send();
}