Grazie cubalibre810!
Ma temo di essermi perso.......
Ribadisco che la "casella" render text as html é attivata...
Questo é l'actionscript che carica i dati da php/mysql:
Codice PHP:
stop();
System.useCodepage = true;
//creo var e carico
myData = new LoadVars()
//carico dal php
myData.load("critica.php")
myData.ref = this
myData.onLoad = function(succes){
if(succes){
for(var i=0; i<this.cant; i++){
this.ref["titolo_txt"+i].text = this["titolo"+i]
this.ref["info_txt"+i].text = this["info"+i]
this.ref["testo_txt"+i].text = this["testo"+i]
this["testo"+i].htmlText = true;
this.ref["critico_txt"+i].text = this["autore"+i]
}
} else trace("Error loading data")
}
Sullo stage ho alcuni dynamictextfields che ho che ho cosi nominato: testo_txt0, testo_txt1, testo_txt2, testo_txt3.
Se guardi c'é gia htmltext
Sapete cosa sbaglio??
Grazie mille per qulsiasi aiuto
Ciao
Nando