如何调整 Flash CS5.5 附带的单选按钮组件的大小?
默认外观非常小。这同样适用于同样非常小的单选按钮标签。
提前致谢
您可以在库中找到图形资产。该文件夹将是"Component Assets" -> "RadioButtonSkins"
. 请注意,有许多影片剪辑包含单选按钮的各种状态
至于单选按钮的文本/标签部分,您必须通过代码来完成。这是您可以拥有的示例函数:
function styleRadioButton(rb:RadioButton, myTextFormat:TextFormat):void {
rb.setStyle("embedFonts", true); //if you want to use an embedded font
rb.setStyle("textFormat", myTextFormat); //set the text format
rb.setStyle("antiAliasType", AntiAliasType.ADVANCED); //if you want smoother looking fonts
rb.textField.autoSize = TextFieldAutoSize.LEFT; //if you want the label to automatically grow
}
因此,如果您有一个名为 的复选框的实例myRadio
,您可以这样做:
var textFormat:TextFormat = new TextFormat("Arial", 24, 0xFF0000); //make a red, 24px Arial text format
styleCheckBox(myRadio,textFormat);
现在,您还可以做的一件更简单的事情是将您的单选按钮放在一个MovieClip
或Sprite
容器内并缩放所述容器。去做这个:
1 - 在舞台上放置一个单选按钮的实例
2 - 选择新创建的实例,按 F8(或修改 -> 转换为符号)
3 - 缩放新制作的影片剪辑