Is it possible to change the size of the text of the label of a radio button component? I'm trying to create a questionnaire for youngsters and need much larger text... Thanks.
rritchey - 09 Jul 2008 17:29 GMT
Actionscript 3:
var _textFormat:TextFormat = new TextFormat();
_textFormat.font = "Arial";
_textFormat.size = 15;
myRadioButton.setStyle("textFormat",_textFormat);
Actionscript 2:
myRadioButton.setStyle("fontSize",15);
gandalf458 - 09 Jul 2008 17:41 GMT
Many thanks. Yeah, sorry I forgot to mention the version. I think I prefer Actioscript 2 ! :)