codice:
mc._visible = false;
mioxml = new XML();
mioxml.path = this;
mioxml.ignoreWhite = true;
mioxml.onLoad = function(success) {
	if (success) {
		arraytesto = new Array();
		arraytesto = this.firstChild.childNodes;
		for (i=0; i<arraytesto.length; i++) {
			this.path.mc.duplicateMovieClip("mc"+i, i);
			this.path["mc"+i]._y = (20*i);
			this.path["mc"+i].testo = "link" + i;
		}
	} else {
		trace("errore");
	}
};
mioxml.load("menu.xml");