flex:如何同时进行两次调整大小效果

时间:2010-06-12 14:46:05

标签: flex animation flex3 flex-mx

HY,

是否有可能在手风琴音量大小改变的同一时刻调整应用程序的大小,以便在调整应用程序大小的同步时调整最后一个应用程序的大小?

在我的代码中,在完成Accordion的调整大小后,应用程序的大小调整:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                layout="absolute" minWidth="400" minHeight="300" backgroundColor="white" horizontalScrollPolicy="off" verticalScrollPolicy="off" mouseDown="stage.nativeWindow.startMove()">



    <mx:Resize id="expand" target="{application}" heightTo="{acc01.height}"/>
    <mx:Accordion id="acc01" x="0" y="0" resizeToContent="true" resize="expand.play();" horizontalScrollPolicy="off" verticalScrollPolicy="off">
        <mx:VBox label="Accordion Pane 1" width="100%" height="100%">            
            <mx:Label text="hello"/>
            <mx:Label text="hello"/>
            <mx:Label text="hello"/>
            <mx:Label text="hello"/>
        </mx:VBox>
        <mx:VBox label="Panel 2" width="100%" height="100%">
            <mx:Label text="hello"/>
            <mx:Label text="hello"/>
        </mx:VBox>
        <mx:VBox label="Panel 3" width="100%" height="100%">
               <mx:Label text="hello"/>
            <mx:Label text="hello"/>
        </mx:VBox>
        <mx:VBox label="Panel 4" width="100%" height="100%">
               <mx:Label text="hello"/>
            <mx:Label text="hello"/>
        </mx:VBox>
    </mx:Accordion>
</mx:Application>

1 个答案:

答案 0 :(得分:1)