下面是类文件的一个简单范例,该文件名为 MyComponent.as。此范例中包含从 UIObject 类继承的组件至少应有的一组导入、方法和声明。
import mx.core.UIObject; class myPackage.MyComponent extends UIObject { static var symbolName:String = "MyComponent"; static var symbolOwner:Object = Object(myPackage.MyComponent); var className:String = "MyComponent"; #include "../core/ComponentVersion.as" function MyComponent() { } function init(Void):Void{ super.init(); } function size(Void):Void { super.size(); } }