TextArea and text Formatting

Hello all,

I was wondering if anyone was able to help me.
I’ve got an action set to pull some information up on screen from a file.

I’d like to find away to get the text to be White, Arial, Bold, and size 15… but i have no idea how! i’ve been trying to figure it out for over a week now and no luck at all. :frowning:

Is anyone able to help?

Below is my action.
This is using ActionScript 3 in Flash CS3

Code:

var externalReq:URLRequest = new URLRequest("SYM.txt");
var externalLoad:URLLoader = new URLLoader();
 
externalLoad.load(externalReq);
externalLoad.addEventListener(Event.COMPLETE, textReady);
 
function textReady(event:Event):void {
box1.text = event.target.data;
box1.setStyle("upSkin",Sprite);}

I look forward to your replies.

Many Thanks, Irianna