Devi assegnare al campo di testo dinamico l'opzione per l'html, e usare htmlText e non text
Così
myV = new LoadVars();
myV.onLoad = function(ok) {
if (ok) {
testonews.html = true
testonews.htmlText = this.varnews;
} else {
testonews.text = "Error 404";
}
};
myV.load('news.txt');