How to make simple html tags in xml work?

Can someone please help me how to, in a simple way, make html tags work from my xml file to flash.

My xml code is

<myfile>
<news>
<![CDATA[<br />Here comes my text where I want to place html tags and have links working like this f.ex <a href="http://www.kirupa.com" target="_blank"> kirupa. ]]>
</news>
</myfile>

And the as3 code I have is

var xmlLoader:URLLoader = new URLLoader();
var xmlData:XML = new XML();
xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
xmlLoader.load(new URLRequest("myTextFile.xml"));
                                          
function LoadXML(e:Event):void {
    xmlData = new XML(e.target.data);
    myTextField.text = xmlData.myfile.news.text();
trace(xmlData);
}

So what do I do with the code to make this work?
Thanks