Dunque, io ho un swf, inserito in un file carica.php, e leggo (dal php tramite _GET()) la variabile "variabile" dalla url. Tramite il flash, leggo l'echo dal php, e non funziona.

cod php:
-------------------------------------------------------
<?php
//$valore = $_GET['valore'];

//echo ("valore=" . urlencode($_POST['valore']) . "&stoppa=222");

echo"valore=22&";


echo '
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="550" height="400">
<param name="movie" value="prendi.swf" />
<param name="quality" value="high" />
<embed src="prendi.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="550" height="400"></embed>
</object>
';



?>

se imposto io il valore della variabile "variabile", --> echo "variabile=73737373&";
la & serve pr non far leggere altro a FLASH, va tutto bene. ma se la variabile la imposto con un _GET --> echo ("valore=" . urlencode($_POST['valore']) . "&stoppa=222"); FLASH, mi da undefined in load di "URLLoader" !!!
Assurdo .... o sbaglio IO ???

questo il codice del fla.
var caricaTesto:URLLoader = new URLLoader();
caricaTesto.dataFormat=URLLoaderDataFormat.VARIABL ES;
testo_txt.wordWrap=true;
testo_txt.autoSize=TextFieldAutoSize.LEFT;

caricaTesto.addEventListener(Event.COMPLETE, onLoaded);

function onLoaded(e:Event):void {

try {
testo_txt.text = e.target.data.valore;

} catch(error:IOErrorEvent) {
testo_txt1.appendText("IOErrorEvent catch: " + error);

} catch(error:TypeError) {
testo_txt1.appendText("TypeError catch: " + error);

} catch(error:Error) {
testo_txt1.appendText("Error catch: " + error);

} finally {
testo_txt1.appendText("Finally! \n --erroreeeee-- "+e.target.data.valore);
}
}

pulsante_btn.addEventListener(MouseEvent.CLICK, visualizza);

function visualizza(evt:MouseEvent):void{
caricaTesto.load(new URLRequest("carica.php"));
}