18/01/2008, 02:11
|
| | | Fecha de Ingreso: enero-2008 Ubicación: Vigo
Mensajes: 78
Antigüedad: 16 años, 10 meses Puntos: 0 | |
Re: cargar jpg desde un xml var obj_xml:XML = new XML();
obj_xml.ignoreWhite = true;
obj_xml.onLoad = function(exito) {
if (exito) {
var ruta:String = obj_xml.firstChild.childNodes[1].attributes["url"];
trace(ruta);
cont.loadMovie(ruta);
}
};
obj_xml.load("xml.xml");
; |