Os pongo el codigo...por si alguien me puede ayudar.
Código :
menuXml = new XML();
menuXml.ignoreWhite = true;
menuXml.onLoad = function(success) {
if (success) {
var menuItem = menuXml.firstChild.lastChild.childNodes;
for (var i = 0; i<menuItem.length; i++) {
Mes = menuItem[i].firstChild.nodeValue;
attachMovie("item_mc", "item_mc"+i, i);
_root["item_mc"+i]._x = 85*i+400;
_root["item_mc"+i]._y = 48;
_root["item_mc"+i].etiqueta_txt.text = Mes;
_root["item_mc"+i].Rectangulo_btn.onRelease=function(){
gotoAndPlay("el famoso frame");
}
}
}
};
menuXml.load("meses.xml"); 