
Код:
class Shape extends UIComponent {
static var symbolName:String = "Shape";
static var symbolOwner:Object = Shape;
var className:String = "Shape";
var themeShape:String = "circle_skin"
function Shape() {
}
function init(Void):Void {
super.init();
}
function createChildren():Void {
setSkin(1, themeShape);
super.createChildren();
}
}
Помоему так...