hola mi consulta es la siguiente yo tengo un swf que obtiene datos de un xml en mi fla creo con textfield las cajas donde guerdo los textos de mi xml y tambien creo un mc donde cargo la imagen mas dos botones siguiente y anterior funciona bien el tema es que ahora nesecito listarlas las noticias y que cuando se haga clic en el titulo la muestre completa, trate de hacerlo usando asfunction pero no lo pude lograr y tambien con acordion pero tampoco pude, alguno podrá guiearme?
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!!