mi codigo es este lo pongo despues de haber creado textfild y el mc
Código :
var indice:Number;
var noticias_xml:XML;
function cargarDatos(_indice:Number){
var titulo:String;
var copete:String;
var mensaje:String;
var imagen:String;
titulo = noticias_xml.firstChild.childNodes[_indice].firstChild.firstChild;
copete = noticias_xml.firstChild.childNodes[_indice].firstChild.nextSibling.firstChild.nodeValue;
mensaje = noticias_xml.firstChild.childNodes[_indice].firstChild.nextSibling.nextSibling.firstChild.nodeValue;
imagen = noticias_xml.firstChild.childNodes[_indice].lastChild.firstChild;
_root.caja1.text = titulo;
_root.caja2.text = copete;
_root.caja3.text = mensaje;
_root.imagen.loadMovie(imagen);
}
siguiente_btn.onPress = function(){
if(noticias_xml.firstChild.childNodes[indice+1] != null){
indice++;
cargarDatos(indice);
}
}
anterior_btn.onPress = function(){
if(noticias_xml.firstChild.childNodes[indice-1] != null){
indice--;
cargarDatos(indice);
}
}
indice=0;
noticias_xml = new XML();
noticias_xml.ignoreWhite = true;
noticias_xml.load("xml/noticias.xml");
noticias_xml.onLoad = function(){
cargarDatos(indice);
}
gracias!!
