02/05/2009, 20:00
|
| | | Fecha de Ingreso: noviembre-2007 Ubicación: yecla murcia
Mensajes: 1.346
Antigüedad: 17 años Puntos: 51 | |
Respuesta: Problema bucle for AS XML Flash es raro porque en teoría te tendría que ir bien asi como esta pero prueba poniendo 1 como valor inicial a la cuenta del for
var myCSS = new TextField.StyleSheet();
var cssURL = "estilo.css";
xml = new XML();
xml.ignoreWhite = true;
xml.onLoad = function(ok) {
if (ok){
parseMyXML();
}
}
xml.load("formacion.xml");
function parseMyXML(){
for (i=1;i<xml.firstChild.childNodes.length;i++){
var datos1:String = xml.firstChild.childNodes[i].attributes.dia;
ejemploTexto += "<p class='titulo'>"+datos1+"</p>";
}
}
myCSS.load(cssURL);
myCSS.onLoad = function(exito) {
if (exito) {
my_txt.styleSheet = myCSS;
my_txt.text = ejemploTexto;
}
};
__________________ Sobran las ideas cuando faltan ganas de trabajar en ellas Lynxcraft |