PLEASE HELP! (PreLoader)

[font=verdana, arial, helvetica][size=2]Ok, This Is Really Simple! I know Its Just Something Dumb That i’m Missing…


stop();
//create the movie clip to hold the preloader
this.createEmptyMovieClip(“preLoader_mc”, 1)
//put the preloader in the right spot
preLoader_mc._x = 255;
preLoader_mc._y = 200;
//create some variables for the preloader
preLoader_mc.tBytes = this.getBytesTotal();
preLoader_mc.startX = 0;
preLoader_mc.startY = 0;
//create the text field to display the information
preLoader_mc.createTextField(“loader_txt”,10,0,-20,400,15);
//create a text format and set some properties
var loadFormat:TextFormat = new TextFormat();
loadFormat.font="_sans";
loadFormat.bold=true;
loadFormat.size=“10”;
loadFormat.color=“0x000000”;
preLoader_mc.loader_txt.setNewTextFormat(loadFormat);
//this callback will run the preloader
preLoader_mc.onEnterFrame = function(){
this.clear();
//create the line style
preLoader_mc.lineStyle(1,0xcccccc,100);
//get amount of loaded bytes
lBytes = _root.getBytesLoaded();
//create the percentage variable
var percentLoaded = Math.floor((lBytes/this.tBytes)100);
if(lBytes != this.tBytes){
//insert text into the text field
this.loader_txt.text= +percentLoaded+"%";
//start the fill
this.beginFill(0xFFFFFF,100);
//draw the loader
this.moveTo(this.startX,this.startY);
this.lineTo(this.startX,this.startY+10);
this.lineTo(this.startX+(percentLoaded
2),this.startY+10);
this.lineTo(this.startX+(percentLoaded*2),this.startY);
this.lineTo(this.startX,this.startY);
this.endFill();
}else{
//go to the second frame
_root.gotoAndStop(“5”);
//remove this preloader
this.removeMovieClip();
}
}

I Created this preloader to run with just a small bar/fill and then I created a text box to handle the percent loaded. The problem I’m having is I can’t Seem to Control The Text in The Text Box. Color,Size Etc. Please Help! Thanks

-Davy[/size][/font]

Here Is an example .fla
http://scooterdie.bordercities.com/davy-preload.zip
The text is not showing up how i changed it, Its only showing up with default setting (black) thanks