Question
Am I trying the impossible?
I wish to format the text that appear in a List component as shown below and it's not working.
var lb = new TextFormat();
lb.bold = true;
lb.align = TextFieldAutoSize.CENTER
lb.color = 0x000066;
var anHeading = new Label()
anHeading.text = "Answers"
anHeading.setSize(200,22)
anHeading.setStyle("textFormat",lb);
anHeading.move(10,78);
addChild(anHeading)