1〉设置文本框
var mText : TextField = new TextField();
mText .autoSize = TextFieldAutoSize.LEFT;
mText .x = 20;
mText .y = 2;
var mTextFormat : TextFormat = new TextFormat();
mTextFormat .color = 0xFFFF00;
mTextFormat .bold = true;
mTextFormat .font = "Arial";
mTextFormat .size = 11;
mTextFormat .appendText("Text In ImageViewer!!");
mText .setTextFormat(mTextFormat );
2〉设置Object 颜色
var colorTransform:ColorTransform = new ColorTransform();
colorTransform.color = 0xFF0000;
bullet.transform.colorTransform = colorTransform;
本文介绍如何使用ActionScript 3.0 (AS3) 设置文本框样式及为对象应用颜色变换效果。具体包括创建文本框、设置字体、大小、颜色等属性,并演示了如何通过ColorTransform来改变舞台上对象的颜色。
2420

被折叠的 条评论
为什么被折叠?



