Te refieres a esto:
Código ActionScript :
//El primer tuto
var myCSS = new TextField.StyleSheet();
myCSS.onLoad = function(exito) {
if (exito) myTexto.styleSheet = myCSS;
};
myCSS.load("miCSS.css");
//El segundo tuto
Obj1 = new LoadVars();
myTexto.htmlText = "Cargando...";
Obj1.load("data.txt");
Obj1.onLoad = function() {
titulo = Obj1.titulo;
descripcion = Obj1.descripcion;
fuente = obj1.fuente;
myTexto.htmlText = "";
myTexto.htmlText = "<u>"+"<b>"+titulo+"</b></u>"+"<br>"+descripcion+"<br><br>"+"Fuente: "+
"<u>"+"<A HREF="asfunction:LinkFuenteNoticias,clarin">"+fuente+"</u>"+"</A>";
};
function LinkFuenteNoticias(cual) { if (cual == "clarin") { direccion = "www.clarin.com.ar"; trace("Fuente de la noticia: "+direccion+" Por: "+cual); } else if (cual == "informador") { direccion = "www.informador.com.mx"; trace("Fuente de la noticia: "+direccion+" Por: "+cual); } }
//El mismo campo de texto "myTexto"
Si es eso?