AS3 /如果我禁用它,为什么我的标签会改变? (单选按钮)

时间:2013-12-09 18:47:49

标签: actionscript-3 flash

禁用后,为什么更改了我的标签颜色和尺寸?我怎么能解决它?

如果这不可能,我怎么能最好地解决它?

1 个答案:

答案 0 :(得分:1)

您需要编辑单选按钮组件的禁用状态剪辑。双击您的单选按钮,然后您将看到它的所有状态,如图像enter image description here

根据需要更改图形。

希望它有所帮助。

试试这个,

var hit:RadioButton = event.currentTarget as RadioButton;

var format:TextFormat = new TextFormat();
format.font = "Arial";
format.size = 23;
format.bold = false;
format.color = 0x5D205E;
format.letterSpacing = 0; 
hit.label = " Hello";
hit.setStyle("textFormat", format);