Flash 在创建类时调用初始化方法。初始化方法至少应调用超类的初始化方法。在调用此方法之后,才能正确设置 width
、height
和 clip
参数。
下面是 Button 类的初始化方法示例,它调用超类的初始化方法、设置缩放和其他默认属性值,并从 UIObject 对象获取颜色属性的值:
function init(Void):Void { super.init(); labelField.selectable = false; labelField.styleName = this; useHandCursor = false; // mark as using color "color" _color = UIObject.textColorList; }