29/01/2008, 14:15
|
| | Fecha de Ingreso: octubre-2006
Mensajes: 48
Antigüedad: 18 años, 1 mes Puntos: 0 | |
Re: cargar Array en un textbox con saltos de linea Aqui dejo el ejemplo corregido gracias por todo ya tengo la idea:
var mixml:XML = new XML();
mixml.ignoreWhite = true;
mixml.onLoad = function(exito) {
if (exito) {
var nodoshijos:Array = mixml.firstChild.childNodes;
for(n:Number=0;n<nodoshijos.length;n++)
{
var xmlNodes:XMLNode = nodoshijos[n];
playlist_txt.text=playlist_txt.text + xmlNodes.attributes.title+"\n";
}
} else {
playlist_txt.text = "Error";
}
}
function cargaXML() {
mixml.load("salsa.xml");
}
myboton_btn.onPress = function() {
cargaXML();
}; |