如何更改Flash专业版默认组件中存在的单选按钮中使用的字体?
答案 0 :(得分:2)
要更改RadioButton
组件标签的字体,可以使用RadioButton.setStyle()
函数设置TextFormat
,该https://github.com/ms609/ProfileParsimony/blob/master/R/tree_manipulation.R将应用于{{3}}的标签(TextField对象) {1}}组件。
为此,您可以这样做:
RadioButton
您也可以使用返回TextField对象的var text_format:TextFormat = new TextFormat();
text_format.font = 'Verdana';
text_format.color = 0xff0000;
RadioButton(radio_button).setStyle('textFormat', text_format);
属性将其直接应用于标签:
RadioButton.textField
希望可以提供帮助。