
18/11/2011, 03:46
|
 | | | Fecha de Ingreso: marzo-2007
Mensajes: 88
Antigüedad: 18 años Puntos: 3 | |
Datos con php Hola a todos.
Tengo un resultado que lo muestra en un php.
Ese resultado lo tengo que incorporar en flash.
hasta el momento con este codigo, recibe el dato, pero no me lo muestra.
var fl_TextLoader_2:URLLoader = new URLLoader();
var fl_TextURLRequest_2:URLRequest = new URLRequest("http://www.orvalencia.es/recogeDatos.php");
fl_TextLoader_2.addEventListener(Event.COMPLETE, fl_CompleteHandler_2);
function fl_CompleteHandler_2(event:Event):void
{
var textData:String = new String(fl_TextLoader_2.data);
trace(textData);
}
fl_TextLoader_2.load(fl_TextURLRequest_2);
QUE DEBO HACER PARA QUE ME MUESTRE ESE RESULTADO CORRECTAMENTE
Última edición por cuen1234; 18/11/2011 a las 04:19 |