Hello i have a little problem. I have 2 components on my stage one text are component and one list component. I have some styles on my actions layer but it wont apply to the list component but applies to the text area component. Is there anything i can add to the code below so my list component will have a white font instead of default black?
var newFormat:TextFormat = new TextFormat();
newFormat.font = "verdana";
newFormat.size = 14;
newFormat.leading = 1;
newFormat.color = 0xffffff;
//list component
lb.setStyle("textFormat",newFormat);
//text area component
ta.setStyle("textFormat",newFormat);