caxx .. a pensarci prima ... questa m'e' venuta in mente adesso e m'ha meravigliato allo stesso punto perche' e' perfetta ...


codice:
var lv1:LoadVars = new LoadVars();
var lv2:LoadVars = new LoadVars();
lv2.onLoad = function( s:Boolean ) {
	if( s == true ) {
		trace( this.value );
	}
}
lv1.onLoad = function( s:Boolean ):Void {
	if( s == true ) {
		for( var a in this ) {
			if( a != 'onLoad' ) {
				lv2.value = a;
				lv2.onLoad( true );
			}
		}
	}
}
lv1.load( 'data.txt' );