Issue with HTML links in XML

Hi. Thanks in advance for the help. For the life of me I can’t figure out how to get an html link to show up in Flash. I know that I need to use a CDATA function but It will not show up as a link in my Flash file. I have selected the dynamic text field called “d_desc” and clicked the box “render text as html”. Can you please help me?

Do I need to insert a function like?
root.myCP.d_desc.htmlText = true;

Not sure where this code will go.

Flash Code
Frame 1
stop();
//
Stage.scaleMode = “noScale”;
//
var imgArray:Array = new Array();
var myImages:XML = new XML();
myImages.ignoreWhite = true;
//
myImages.onLoad = function(sucess) {
if (sucess) {
rootNode = this.firstChild.childNodes;
var totalMenu:Number = rootNode.length;
//trace(totalMenu)
//node 0 = add settings info into array
s_thumbWidth = int(rootNode[0].attributes.thumbWidth);
s_thumbHeight = int(rootNode[0].attributes.thumbHeight);
s_pausecountdown = int(rootNode[0].attributes.pauseCountdown);
s_slideSpeed = rootNode[0].attributes.slideSpeed;
s_autoStart = rootNode[0].attributes.autoStart;
s_imageScale = rootNode[0].attributes.scaleImageToFit;
//node >= 0 add menu info into array
for (i=1; i<totalMenu; i++) {
m_big = rootNode*.childNodes[1].firstChild.nodeValue;
m_small = rootNode*.childNodes[2].firstChild.nodeValue;
m_title= rootNode*.childNodes[0].firstChild.nodeValue;
m_desc= rootNode*.childNodes[3].firstChild.nodeValue;
trace(m_big);
imgArray.push([m_big, m_small, m_title, m_desc]);

    }
    gotoAndStop("done");
}

};
myImages.load("_xml/gal1.xml");

XML Code
<?xml version=“1.0” encoding=“utf-8” standalone=“no”?>
<images>
<set thumbWidth=“90” thumbHeight=“71” slideSpeed=“0.9” pauseCountdown=“5” autoStart=“true” scaleImageToFit=“true”></set>
<img>
<title>Image Name</title>
<bimage>_img/img00.jpg</bimage>
<thumb>_img/img00_t.jpg</thumb>
<desc><![CDATA[Some text can go here with a <a href=“http://www.yahoo.com”>link here</a>. Second line of text.]]></desc>
</img>
</images>

Thanks for the help…M