codice:
var data_xml = new XML();
data_xml.ignoreWhite = true;
data_xml.onLoad = function(success) {
	if (success) {
		textArea_mc.traccia = function(testo)
		{
			trace(testo);
		}
		textArea_mc.html = true;
		textArea_mc.text = this.firstChild.firstChild.firstChild.nodeValue;
	} else {
		trace("FILE XML MANCANTE");
	}
};
data_xml.load("xml/democrazia.xml");