XML works in one FLA but not in other

Hi, I am using XML to basically load menu items and then attach a a file when the menu item is pressed. I went through the tutorials on Kirupa. I am getting this error from one FLA and the other FLA works fine. I have attached some code and the sources for this.

Error opening URL “file:///E|/My%20Documents/WEB%20DESIGN/JUSTIN%20OPITZ/FLASH/CURRENT%20FLASH/Current/undefined”

This File Works Fine:
var test_xml:XML = new XML();
test_xml.ignoreWhite = true;
test_xml.onLoad = function(success) {
if (success) {
var rootNode:Object = test_xml.firstChild;
for (n = 0; n < rootNode.childNodes.length; n++) {
attachMovie(“empty_mc”, “text_mc” + n, n, {_x:0, _y:(n * 400) - 400});
_root[“text_mc” + n].text_txt.text = rootNode.childNodes[n].childNodes[0].nodeValue;
loadMovie(rootNode.childNodes[n].attributes.loc, _root[“text_mc” + n].holder_mc);
}
}
};

This File’s AS2.0 produces the error. What is the deal!!!

var menu_style_01:TextFormat = new TextFormat();
with (menu_style_01) {
size = 10;
font = “Lucida Console”;
color = 0x000000;
align = “left”;
bold = false;
italic = false;
}
var test_xml:XML = new XML();
test_xml.ignoreWhite = true;
test_xml.onLoad = function(success) {
if (success) {
var rootNode:Object = test_xml.firstChild;
var my_mcl:MovieClipLoader = new MovieClipLoader();
for (n = 0; n < rootNode.childNodes.length; n++) {
_root.createEmptyMovieClip(“menu_mc” + n, n);
_root[“menu_mc” + n]._y = n * 15;
_root[“menu_mc” + n].createTextField(“menu_txt”, 10, 0, 0, 200, 15);
_root[“menu_mc” + n].menu_txt.text = rootNode.childNodes[n].firstChild.nodeValue;
_root[“menu_mc” + n].menu_txt.setTextFormat(menu_style_01);
_root[“menu_mc” + n].onPress = function() {
empty_mc.loadMovie(rootNode.childNodes[n].attributes.loc);
};
}
}
};
test_xml.load(“test.xml”);

Thanks for any help