Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/06/2009, 18:12
Avatar de Mojorochi
Mojorochi
 
Fecha de Ingreso: mayo-2009
Mensajes: 40
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: Cargar Variables de php y de cualquier documento de texto

encontre uno mas sencillo, pero no logra cargar las varieables y mostrarme sus valores:

Cita:
var req:URLRequest = new URLRequest("datos_autores.txt");

var datos:URLLoader = new URLLoader();
try{
datos.load(req);
}
catch (error:Error) {
datos_txt.text = "Error cargando los datos";
}

datos.addEventListener(Event.COMPLETE, mostrar);

function mostrar(e:Event){
try{
var variables:URLVariables = new URLVariables(e.target.data);
trace(variables.autor1);
trace("----------------¬");
trace(variables.pais1);
trace("----------------¬");
trace(variables.mail1);
}catch(error:Error){
trace("ERROR "+e.target.data);
}
}
Y siempre me sale el error, no se que estoy haciendo mal... talves sea la sintaxis del documento

El contenido del documento de texto datos_autores.txt es el siguiente:

Cita:
&autor1=Daniel de la Cruz Heras
&pais1=España
&[email protected]
Linea de mas