2012-06-02 118 views
0

擴大的Flex AIR窗口的大小上的一個按鈕的點擊我怎麼能向下擴展一個Flex的AIR窗口上點擊按鈕與往下滑effect.Something類似查看更多詳細信息按鈕時的作品我們將文件從一個位置複製到另一個位置。提前感謝。有向下滑動的過渡效果

回答

0

您可以更改本機窗口大小,並添加時,尺寸的變化調整效果。

<?xml version="1.0" encoding="utf-8"?> 
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
        xmlns:s="library://ns.adobe.com/flex/spark" 
        xmlns:mx="library://ns.adobe.com/flex/mx" resizeEffect="{resizeEffect}" width="250" height="183"> 

    <fx:Script> 
    <![CDATA[ 
     protected function expandButton_clickHandler(event:MouseEvent):void 
     { 
      nativeWindow.height = //height what ever you like 
      nativeWindow.width = //width what ever you like 

     } 
    ]]> 
</fx:Script> 

    <fx:Declarations> 
    <!-- Place non-visual elements (e.g., services, value objects) here --> 
    <mx:Resize id="resizeEffect" duration="500" /> 
    </fx:Declarations>