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