I am trying to style the dropdown list in my combo box
var ddlFormat:TextFormat = new TextFormat();
ddlFormat.font = new AvRoman ().fontName;
ddlFormat.color = 0x333333;
ddlFormat.size = 12;
ddl.dropdown.setStyle("textFormat", ddlFormat);
ddl.textField.setStyle("textFormat", ddlFormat);
but the styling only works on the textField, anyone know how i can style the (dropdown) list as well?
Thanks
dai2:egg: