Flash and XML question

[COLOR=black][FONT=Arial]I’ve created a dynamic listing of my blog entries using the RSS feed. I’ve got everything working fine, except for the most important thing…linking to the blog entries. [/FONT][/COLOR]
[COLOR=black][FONT=Arial] [/FONT][/COLOR]
[COLOR=black][FONT=Arial]Let me see if I can explain the problem in detail. Since I’m new to Flash/XML integration, please bear with me.[/FONT][/COLOR][COLOR=black][FONT=Arial][/FONT][/COLOR]
[COLOR=black][FONT=Arial] [/FONT][/COLOR]
[COLOR=black][FONT=Arial]I have parsed the XML file and have created a MovieClip for each of the entry titles. All the titles come in perfectly, and even the spacing between each one is perfect. When I click on one of the MCs, it opens up the link associated with the last entry on the list. I’ve Traced the variable containing the link information and each entry is coming in, but only the last one is being stored for the getURL command. I’m pretty sure that the value is initially set to the correct value, but when the next item comes in, the value is replaced, leaving the last value the only one that attaches to the clickable MC. [/FONT][/COLOR][COLOR=black][FONT=Arial][/FONT][/COLOR]
[COLOR=black][FONT=Arial] [/FONT][/COLOR]
[COLOR=black][FONT=Arial]

[/FONT][/COLOR]
[COLOR=black][FONT=Arial]var linkItems = my_xml.firstChild.firstChild.childNodes;[/FONT][/COLOR]
[COLOR=black][FONT=Arial]for (var i = 3; i < linkItems.length; i++) {
   var currTitle:String = linkItems*.childNodes[0].firstChild;
   var currLink:String = linkItems*.childNodes[1].firstChild;
   if (length(currTitle) > 65) {
    currTitle = substring(currTitle, 0, 63) + "...";    // create shortened string
   }
   //trace(currTitle);  //debug title info
   //trace(currLink);  //debug link info
   var currTitle:String = linkItems*.childNodes[0].firstChild;
   var currLink:String = linkItems*.childNodes[1].firstChild;
   var item_mc = listContainer_MC.attachMovie("item_MC", "item" + item_count, item_count);
   item_mc.listDisplay.htmlText = currTitle;
   item_mc.onRelease = function() {
    getURL(currLink, "_blank");
   };[/FONT][/COLOR]
[COLOR=black][FONT=Arial]

[/FONT][/COLOR]
[COLOR=black][FONT=Arial] [/FONT][/COLOR]
[COLOR=black][FONT=Arial]My questions:[/FONT][/COLOR][COLOR=black][FONT=Arial][/FONT][/COLOR]
[COLOR=black][FONT=Arial]1) Is this what’s happening?[/FONT][/COLOR][COLOR=black][FONT=Arial][/FONT][/COLOR]
[COLOR=black][FONT=Arial]2) How can I fix it?[/FONT][/COLOR][COLOR=black][FONT=Arial][/FONT][/COLOR]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]