Flex中通过resizeEffect样式在HBox控件resize时添加特定效果
<?xml version="1.0" encoding="utf-8"?> <mx:Application name="HBox_resizeEffect_test" xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" backgroundColor="white"> <mx:HDividedBox id="hDividedBox" width="100%" height="100%"> <mx:HBox id="hBox1" backgroundColor="haloGreen" resizeEffect="Resize" width="100%" height="100%" /> <mx:HBox id="hBox2" backgroundColor="haloBlue" resizeEffect="Resize" width="100%" height="100%" /> </mx:HDividedBox> </mx:Application>