Insertar un TextArea en el primer fotograma y el siguiente codigo
(para este codigo asignarle al Textarea el nombre "noticiasmexico")

----------------------------------------------{codigo}-----------------------------------------
function searchAndReplace(holder, searchfor, replacement) {
temparray = holder.split(searchfor);
holder = temparray.join(replacement);
return (holder);
}

function loadXML (loaded) {
if (loaded) {
xmlNode = this.firstChild

// recordar poner el Textarea en html
noticiasmexico.html = true
// encabezado
noticiasmexico.text += xmlNode.childNodes[0].childNodes[0].firstChild.nodeValue+ "<br>"
noticiasmexico.text +='<a href="' + xmlNode.childNodes[0].childNodes[2].firstChild.nodeValue+'" target="_blank">' + xmlNode.childNodes[0].childNodes[1].firstChild.nodeValue + "</a><br>"
// noticias
// verificar la estructura del xml para utilizar con otro RSS diferente a yahoo
// recordar que flash utiliza UFT -8 para caracteres especiales
xmlNode2 = xmlNode.firstChild
total = xmlNode2.childNodes.length
for ( i = 8; i < total; i++){
noticiasmexico.text +='<b><font size="16" color="#0000FF"><a href="' + xmlNode2.childNodes[i].childNodes[1].firstChild.nodeValue+'" target="_blank">' + xmlNode2.childNodes[i].childNodes[0].firstChild.nodeValue + "</a></font></b><br>"
// remplzar cadenas no deseadas o no soportadas
lineascontenido = ""
lineascontenido = searchAndReplace(xmlNode2.childNodes[i].childNodes[4].firstChild.nodeValue, '><img src', ' target="_blank" ><img src');
noticiasmexico.text += searchAndReplace(lineascontenido, '<br clear=all>', '<br>');
noticiasmexico.text += xmlNode2.childNodes[i].childNodes[3].firstChild.nodeValue + "<br><br><br>"
}
noticiasmexico.editable = false
} else {
noticiasmexico.text = "error al cargar noticias!"
}
}
xmlData = new XML ()
xmlData.ignoreWhite = true
xmlData.onLoad = loadXML
xmlData.load("http://d.yimg.com/mx.rss.news.yahoo.com/rss/titulares")
// RSS yahoo internacional http://d.yimg.com/mx.rss.news.yahoo.com/rss/internacionales
// Rss yahoo deportes http://d.yimg.com/mx.rss.news.yahoo.com/rss/deportes
----------------------------------------------{codigo}-----------------------------------------

pueden ver mi ejempo en el siguiente link
www.terapiacondelfines.com.mx/noticiasmexico.html[/flash][/url]