попробывал сделать вот так!!!

Код:
System.useCodepage = true;
data_xml = new XML();
data_xml.ignoreWhite = true;
data_xml.onLoad = parseXML;
data_xml.load("clanuser.xml");
data_xml2 = new XML();
data_xml2.ignoreWhite = true;
function parseXML() {
arrXML = varData(this.firstChild);
delete data_xml;
data_xml2.load("users.xml");
data_xml2.onLoad = function() {
arrXML2 = varData(this.firstChild);
delete data_xml2;
trace(arrXML2.users.user[0]._attributes.nick);
trace(arrXML.users.user[0]._attributes.nick);
if (arrXML2.users.user[0]._attributes.nick === arrXML.users.user[0]._attributes.nick) {
trace("ok");
}
};
}
ничего не получается!!!! подскажите что не так??????