tengo este codigo:
Código :
System.useCodepage= true;
LoadVarsText = new LoadVars();
LoadVarsText.load("phpproyectosRelevantes.php");
//assign a function which fires when the data is loaded:
LoadVarsText.onLoad = function(success) {
if (success) {
var maquetado:String;
for (i=0; i < this.n; i++) {
maquetado += "hoooooooola";
maquetado += "<b>" + this["nombre"+i] + "</b><br><br>\n";
for (x=0; x < this.n2; x++) {
maquetado += "hoooooooola";
maquetado += this["empresa"+x] + "<br>\n";
}
}
_root.conFondo.txt_menu.htmlText = maquetado;
} else {
trace("not loaded");
}
};cada this.n, lee de una tabla diferente, pero no se porque solo me muestra lo del primer bucle y no el segundo.
alguien me puede decir algo?
gracias
etiquetas code gracias al equipo SWAT
