OK, Now I have a bigger problem. I am attaching my code so you can see the whole thing. Here is what I have.
I have a text file that has a variable in it called "myVars". The info is separated by a "|". I then load the file, split the vars and load them into an array. I then have in my library, a button symbol with a linkage name of "button". I need to have a symbol placed for each value in the array. What I was getting before was just a symbol that I had dragged to the stage by mistake. Now that I have gotten rid of that, when I run my file, I get NOTHING! NADA! I can't figure it out! Help! Here is my code.
var myVarText = "C:\\Documents and Settings\\wallen\\Desktop\\myVars.txt"
var my_lv = new LoadVars();
my_lv.onLoad = function(success){
if (success){
myArray = [];
myArray = my_lv.myVars.split("|");
for(i=0;i<(myArray.length -1);i++) {
myArray[i] = myArray[i].split("|");
}
for(i=0;i<(myArray.length -1);i++) {
var attachProduct = attachMovie("button","button"+i,i);
attachProduct._x += i*220; //incremented for each button
attachProduct._y += 40; //static 40 pixels from top
}
}
my_lv.load(myVarText);
}

Your humble servant
O