Aggiungere nell'xml via actionscript?

codice:
var data_xml = new XML();
data_xml.ignoreWhite = true;
data_xml.onLoad = function(success)
{
	if(success){
		trace(this);
		this.firstChild.attributes.LINK = "pagina.html";
		trace("*************")
		trace(this)
	} else {
		trace("XML FILE MISSING");
	}
};
data_xml.load("file.xml");