ops...posto il codice, magari è d'aiuto:
txtNews è l'istanza del testo dinamico.


nel 1° frame as ho:

stop();
Stage.showMenu = false;
Stage.scaleMode = 'noScale';
System.useCodepage = true;

file = 'http://www.pippopluto.it/play/news.php';
news = new LoadVars();
news.onLoad = function(success){
if(success){
play();
}
}
news.load(file);
alpha = 100;
i = 0;
function time(a){
fade = setInterval(a, 20);
}
function fadeIn(){
if(alpha == 0){
clearInterval(fade);
play();
}
else{
alpha -= 1;
mask._alpha = alpha;
}
}
function fadeOut(){
if(alpha == 100){
clearInterval(fade);
gotoAndPlay(2);
}
else{
alpha += 1;
mask._alpha = alpha;
}
}


nel 2° frame:



stop();
function News(){
if(i == news.totNews){
i = 0;
}
txtNews.htmlText = ''+news["data"+i]+'
';
txtNews.htmlText += ''+news["titolo"+i]+'
';
txtNews.htmlText += news["testo"+i];
i++;
}
News();
setInterval(News, 10000);
time(fadeIn);

infine, al 30°:

stop();
time(fadeOut);



Il problema è che il testo dinamico, cioè txtNews, non "tiene il passo" della pagina php e perde tutti gli aggiornamenti, a meno che non faccia un refresh manuale..cosa che non posso permettermi di fare...