package com
{
import flash.display.DisplayObject;
import mx.containers.HBox;
public class MyHBox extends HBox
{
public function MyHBox()
{
super();
}
public override function addChild
(child:DisplayObject):DisplayObject
{
this.addChildAt(child,0);
return child
}
}
}
0 comments:
Post a Comment