He realixzado un swf que parsea datos desde un xml cuando lo hago con cajas de texto dinamico introduciendole las variable todo ok pero ahora que lo estoy haciendo creando cajas de texto y un mc no puedo hacer que los botones funcionen mi codigo es este
this._lockroot = true;
// creo las cajas donde voy a guardar los textos
this.createTextField("caja1",1,17,37,200,50);
caja1.html = true;
caja1.wordWrap = true;
caja1.multiline = true;
caja1.label.condenseWhite = true;
caja1.focusTextField = null;
var styles_caja1:TextField.StyleSheet = new TextField.StyleSheet();
styles_caja1.load("modulo_noticias/estilos.css");
caja.styleSheet = styles_caja1;
this.createTextField("caja2",2,298,37,200,50);
caja2.html = true;
caja2.wordWrap = true;
caja2.multiline = true;
caja2.label.condenseWhite = true;
caja2.focusTextField = null;
var styles_caja2:TextField.StyleSheet = new TextField.StyleSheet();
styles_caja2.load("modulo_noticias/estilos.css");
caja2.styleSheet = styles_caja2;
this.createTextField("caja3",3,28,212,200,50);
caja3.html = true;
caja3.wordWrap = true;
caja3.multiline = true;
caja3.label.condenseWhite = true;
caja3.focusTextField = null;
var styles_caja3:TextField.StyleSheet = new TextField.StyleSheet();
styles_caja3.load("modulo_noticias/estilos.css");
caja3.styleSheet = styles_caja3;
// creo las cajas donde voy a guardar la imagen
imagen = this.createEmptyMovieClip("imagen",4)
imagen._x = 250;
imagen._y = 100;
ancho = 100;
alto = 100;
item = _root.imagen
var my_caja:XML = new XML();
my_caja.ignoreWhite = true;
my_caja.onLoad = function(success:Boolean) {
if (success) {
nicanor = my_caja.firstChild;
caja.styleSheet = styles_caja;
caja1.text = nicanor.firstChild.childNodes[0].firstChild.nodeValue;
caja2.text = nicanor.firstChild.childNodes[1].firstChild.nodeValue;
caja3.text = nicanor.firstChild.childNodes[2].firstChild.nodeValue;
imagen = nicanor.firstChild.childNodes[3].firstChild.nodeValue;
item.loadMovie(imagen)
}
}
my_caja.load("noticias.xml");
Probe de muchas formas crear funciones pero no he podido
si alguien puede hechrme una mano