sei su MX o MX2004 ??
se sei su MX usa questa:
codice:
var info = new LoadVars();
info.onLoad = function(s) {
if(s) {
trace(this);
}
else {
trace("Errore nel caricamento file");
}
}
info.load("http://www.sansevero.info/notizie.txt");
P.S. m'ero scordato qualche graffa prima 
per MX2004
codice:
var info:LoadVars = new LoadVars();
info.onLoad = function( s:Boolean ):Void {
if( s == true ) {
trace( this );
}
else {
trace("Errore nel caricamento file");
}
}
info.load( "http://www.sansevero.info/notizie.txt" );