Código :
var noticias:LoadVars = new LoadVars();
var num:Number;
var titulo = new Array();
var id = new Array();
var fecha = new Array();
txt_not.multiline = true;
txt_not.html = true;
noticias.sendAndLoad("noticias.php",noticias,"POST");
noticias.onLoad = function(){
for (i=0;i < this.n;i++){
id[i] = this["idnot"+i];
titulo[i] = this["titulo"+i];
fecha[i] = this["fecha"+i];
}
}
var j:Number = 0;
function ver(){
if(j == noticias.n){
j = 0;
}else{
txt_not.htmlText = "<div align='center'><a href='index.php?pag=not&idn="+id[j]+"'><br>"+fecha[j]+"<br><b>"+titulo[j]+"</b></a></div>";
j++;
}
}
setInterval(ver,4000);
