comunque sia, risolto il problema del Player, questo codice dovrebbe prenderti le info e mostrarle in trace() , tutto il resto fa parte , eventualmente, di altre problematiche.


codice:
var myLoader = new LoadVars();
myLoader.onLoad = function( success ) {
	if( success ) {
		var a = 1;
		while( this["T" + a] != undefined ) {
			trace( "TITOLO: " + this["T" + a] );
			trace( "DATA: " + this["D" + a] );
			trace( "LUOGO: " + this["L" + a] );
			trace( "IMMAGINE: " + this["IMG" + a] );
			trace( "---------------------------------" );
			a++;
		}
	}
	else {
		trace( "Pagina non trovata" );
	}
}
myLoader.load("http://localhost/miofile.php");