Blurred font Dynamic text field

Hi all,

I have a vertical menu created with attached movie Clips that contain dynamic text fields. The names in the textfield are from an xml file, the problem is the text becomes blurred as the buttons go down and the ._y increases

[AS]
myXml = new XML();
myXml.ignoreWhite = true;
myXml.onLoad = function(success) {
if (success) {
loadFonts();
} else {
trace(“XML not loaded”);
}
};
var btn_spacing = 24;
myXml.load(“places.xml”);
loadFonts = function () {
start = myXml.firstChild.childNodes;
for (var i = 0; i<start.length; i++) {
info = start*;
fontBtn = nav_mc.holder_mc.attachMovie(“btn_mc”, “btn_mc+i”, i+1);
fontBtn.base_mc._alpha = 0;
fontBtn._y = btn_spacing*i;
fontBtn.name = info.attributes.name;
fontBtn.id = info.attributes.id;
fontBtn.name_txt.text = fontBtn.name;
fontBtn.onRollOver = function() {
this.base_mc._alpha = 100;
this.name_txt.textColor = 0x000000
};
fontBtn.onRollOut = fontBtn.onDragOut=function () {
this.base_mc._alpha = 0;
this.name_txt.textColor = 0xffffff
};

};
[/AS]