Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/07/2005, 07:19
ratamaster
 
Fecha de Ingreso: octubre-2004
Ubicación: En algún lugar de la República Oriental del Uruguay
Mensajes: 366
Antigüedad: 19 años, 6 meses
Puntos: 0
ok, encontré este tutorial y me funcionó:

php:
Código:
//creamos la variable
    $nombre = "johnmartin es mi nombre";
    //le damos salida
    print("nombre=" . $nombre);
actionscript:
Código:
var a = new LoadVars();
    a.load("miphp.php");
    a.onLoad = function() {
    texto_txt.text = this.nombre;
};

gracias