<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 325,  comments - 25,  trackbacks - 0

    視圖狀態(tài)切換:
    <?xml version="1.0" ?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
      backgroundColor="#FFFFFF"> 
      <mx:states>
        <mx:State name="Description">
          <mx:AddChild relativeTo="{hbox1}" position="before">
            <mx:TextArea width="200" height="180"
             borderStyle="none"
             text="Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. "/>
          </mx:AddChild>
          <mx:RemoveChild target="{descButton}"/>
          <mx:AddChild relativeTo="{hbox1}" position="before">
            <mx:Button label="Close Description"
             click="this.currentState=''"/>
          </mx:AddChild>
        </mx:State>
      </mx:states>
      <mx:VBox id="vbox1" borderStyle="outset" paddingLeft="5" paddingBottom="5" paddingRight="5" paddingTop="5">
        <mx:Label text="Product Name" fontWeight="bold" />
        <mx:Button label="Open Description"
         click="this.currentState='Description'"
         id="descButton"/>
        <mx:HBox id="hbox1">
          <mx:Label text="$3.99"/>
          <mx:NumericStepper id="qty" minimum="1"
           maximum="10" stepSize="1"/>
         <mx:Button label="Add to Cart"/>
        </mx:HBox>
      </mx:VBox>
    </mx:Application>
    使用過渡:由于狀態(tài)切換過于突然,要變的溫和一些

    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
     width="400" height="400" layout="absolute"
     verticalScrollPolicy="off" horizontalScrollPolicy="off"
     backgroundColor="#FFFFFF">
     <mx:transitions>
        <mx:Transition fromState="*" toState="*">
          <mx:Sequence targets="{[panel1,panel2,panel3]}">
            <mx:Move duration="400"/>
            <mx:Rotate angleFrom="0" angleTo="360" filter="move" />
            <mx:Resize duration="400"/>
          </mx:Sequence>
        </mx:Transition>
      </mx:transitions>
      <mx:states>
        <mx:State name="s1">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="60"/>
          <mx:SetProperty target="{panel1}" name="height" value="300"/>
          <mx:SetProperty target="{panel1}" name="width" value="390"/>
          <mx:SetProperty target="{panel2}" name="x" value="135"/>
          <mx:SetProperty target="{panel2}" name="y" value="10"/>
          <mx:SetProperty target="{panel2}" name="height" value="30"/>
          <mx:SetProperty target="{panel2}" name="width" value="125"/>
          <mx:SetProperty target="{panel3}" name="x" value="270"/>
          <mx:SetProperty target="{panel3}" name="y" value="10"/>
          <mx:SetProperty target="{panel3}" name="height" value="30"/>
          <mx:SetProperty target="{panel3}" name="width" value="125"/>
        </mx:State>
        <mx:State name="s2">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="10"/>
          <mx:SetProperty target="{panel1}" name="height" value="30"/>
          <mx:SetProperty target="{panel1}" name="width" value="125"/>
          <mx:SetProperty target="{panel2}" name="width" value="390"/>
          <mx:SetProperty target="{panel2}" name="height" value="300"/>
          <mx:SetProperty target="{panel2}" name="x" value="5"/>
          <mx:SetProperty target="{panel2}" name="y" value="60"/>
          <mx:SetProperty target="{panel3}" name="x" value="270"/>
          <mx:SetProperty target="{panel3}" name="y" value="10"/>
          <mx:SetProperty target="{panel3}" name="height" value="30"/>
          <mx:SetProperty target="{panel3}" name="width" value="125"/>
        </mx:State>
        <mx:State name="s3">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="10"/>
          <mx:SetProperty target="{panel1}" name="height" value="30"/>
          <mx:SetProperty target="{panel1}" name="width" value="125"/>
          <mx:SetProperty target="{panel2}" name="x" value="135"/>
          <mx:SetProperty target="{panel2}" name="y" value="10"/>
          <mx:SetProperty target="{panel2}" name="height" value="30"/>
          <mx:SetProperty target="{panel2}" name="width" value="125"/>
          <mx:SetProperty target="{panel3}" name="width" value="390"/>
          <mx:SetProperty target="{panel3}" name="height" value="300"/>
          <mx:SetProperty target="{panel3}" name="x" value="5"/>
          <mx:SetProperty target="{panel3}" name="y" value="60"/>
        </mx:State>
      </mx:states>
      <mx:Panel x="5" y="10" width="125" height="30" layout="absolute" title="Panel 1" id="panel1" click="this.currentState='s1'"/>
      <mx:Panel x="135" y="10" width="125" height="30" layout="absolute" title="Panel 2" id="panel2" click="this.currentState='s2'"/>
      <mx:Panel x="270" y="10" width="125" height="30" layout="absolute" id="panel3" title="Panel 3" click="this.currentState='s3'"/>
      <mx:Button x="167" y="368" label="Reset" click="this.currentState=''"/>
    </mx:Application>

     




     

    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
     width="400" height="400" layout="absolute"
     verticalScrollPolicy="off" horizontalScrollPolicy="off"
     backgroundColor="#FFFFFF">
     <mx:transitions>
        <mx:Transition fromState="*" toState="*">
          <mx:Sequence targets="{[panel1,panel2,panel3]}">
            <mx:Move duration="400"/>
            <mx:Rotate angleFrom="0" angleTo="360" filter="move" />
            <mx:Resize duration="400"/>
          </mx:Sequence>
        </mx:Transition>
      </mx:transitions>
      <mx:states>
        <mx:State name="s1">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="60"/>
          <mx:SetProperty target="{panel1}" name="height" value="300"/>
          <mx:SetProperty target="{panel1}" name="width" value="390"/>
          <mx:SetProperty target="{panel2}" name="x" value="135"/>
          <mx:SetProperty target="{panel2}" name="y" value="10"/>
          <mx:SetProperty target="{panel2}" name="height" value="30"/>
          <mx:SetProperty target="{panel2}" name="width" value="125"/>
          <mx:SetProperty target="{panel3}" name="x" value="270"/>
          <mx:SetProperty target="{panel3}" name="y" value="10"/>
          <mx:SetProperty target="{panel3}" name="height" value="30"/>
          <mx:SetProperty target="{panel3}" name="width" value="125"/>
        </mx:State>
        <mx:State name="s2">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="10"/>
          <mx:SetProperty target="{panel1}" name="height" value="30"/>
          <mx:SetProperty target="{panel1}" name="width" value="125"/>
          <mx:SetProperty target="{panel2}" name="width" value="390"/>
          <mx:SetProperty target="{panel2}" name="height" value="300"/>
          <mx:SetProperty target="{panel2}" name="x" value="5"/>
          <mx:SetProperty target="{panel2}" name="y" value="60"/>
          <mx:SetProperty target="{panel3}" name="x" value="270"/>
          <mx:SetProperty target="{panel3}" name="y" value="10"/>
          <mx:SetProperty target="{panel3}" name="height" value="30"/>
          <mx:SetProperty target="{panel3}" name="width" value="125"/>
        </mx:State>
        <mx:State name="s3">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="10"/>
          <mx:SetProperty target="{panel1}" name="height" value="30"/>
          <mx:SetProperty target="{panel1}" name="width" value="125"/>
          <mx:SetProperty target="{panel2}" name="x" value="135"/>
          <mx:SetProperty target="{panel2}" name="y" value="10"/>
          <mx:SetProperty target="{panel2}" name="height" value="30"/>
          <mx:SetProperty target="{panel2}" name="width" value="125"/>
          <mx:SetProperty target="{panel3}" name="width" value="390"/>
          <mx:SetProperty target="{panel3}" name="height" value="300"/>
          <mx:SetProperty target="{panel3}" name="x" value="5"/>
          <mx:SetProperty target="{panel3}" name="y" value="60"/>
        </mx:State>
      </mx:states>
      <mx:Panel x="5" y="10" width="125" height="30" layout="absolute" title="Panel 1" id="panel1" click="this.currentState='s1'"/>
      <mx:Panel x="135" y="10" width="125" height="30" layout="absolute" title="Panel 2" id="panel2" click="this.currentState='s2'"/>
      <mx:Panel x="270" y="10" width="125" height="30" layout="absolute" id="panel3" title="Panel 3" click="this.currentState='s3'"/>
      <mx:Button x="167" y="368" label="Reset" click="this.currentState=''"/>
    </mx:Application>

     


     

    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
     width="400" height="400" layout="absolute"
     verticalScrollPolicy="off" horizontalScrollPolicy="off"
     backgroundColor="#FFFFFF">
     <mx:transitions>
        <mx:Transition fromState="*" toState="*">
          <mx:Sequence targets="{[panel1,panel2,panel3]}">
            <mx:Move duration="400"/>
            <mx:Rotate angleFrom="0" angleTo="360" filter="move" />
            <mx:Resize duration="400"/>
          </mx:Sequence>
        </mx:Transition>
      </mx:transitions>
      <mx:states>
        <mx:State name="s1">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="60"/>
          <mx:SetProperty target="{panel1}" name="height" value="300"/>
          <mx:SetProperty target="{panel1}" name="width" value="390"/>
          <mx:SetProperty target="{panel2}" name="x" value="135"/>
          <mx:SetProperty target="{panel2}" name="y" value="10"/>
          <mx:SetProperty target="{panel2}" name="height" value="30"/>
          <mx:SetProperty target="{panel2}" name="width" value="125"/>
          <mx:SetProperty target="{panel3}" name="x" value="270"/>
          <mx:SetProperty target="{panel3}" name="y" value="10"/>
          <mx:SetProperty target="{panel3}" name="height" value="30"/>
          <mx:SetProperty target="{panel3}" name="width" value="125"/>
        </mx:State>
        <mx:State name="s2">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="10"/>
          <mx:SetProperty target="{panel1}" name="height" value="30"/>
          <mx:SetProperty target="{panel1}" name="width" value="125"/>
          <mx:SetProperty target="{panel2}" name="width" value="390"/>
          <mx:SetProperty target="{panel2}" name="height" value="300"/>
          <mx:SetProperty target="{panel2}" name="x" value="5"/>
          <mx:SetProperty target="{panel2}" name="y" value="60"/>
          <mx:SetProperty target="{panel3}" name="x" value="270"/>
          <mx:SetProperty target="{panel3}" name="y" value="10"/>
          <mx:SetProperty target="{panel3}" name="height" value="30"/>
          <mx:SetProperty target="{panel3}" name="width" value="125"/>
        </mx:State>
        <mx:State name="s3">
          <mx:SetProperty target="{panel1}" name="x" value="5"/>
          <mx:SetProperty target="{panel1}" name="y" value="10"/>
          <mx:SetProperty target="{panel1}" name="height" value="30"/>
          <mx:SetProperty target="{panel1}" name="width" value="125"/>
          <mx:SetProperty target="{panel2}" name="x" value="135"/>
          <mx:SetProperty target="{panel2}" name="y" value="10"/>
          <mx:SetProperty target="{panel2}" name="height" value="30"/>
          <mx:SetProperty target="{panel2}" name="width" value="125"/>
          <mx:SetProperty target="{panel3}" name="width" value="390"/>
          <mx:SetProperty target="{panel3}" name="height" value="300"/>
          <mx:SetProperty target="{panel3}" name="x" value="5"/>
          <mx:SetProperty target="{panel3}" name="y" value="60"/>
        </mx:State>
      </mx:states>
      <mx:Panel x="5" y="10" width="125" height="30" layout="absolute" title="Panel 1" id="panel1" click="this.currentState='s1'"/>
      <mx:Panel x="135" y="10" width="125" height="30" layout="absolute" title="Panel 2" id="panel2" click="this.currentState='s2'"/>
      <mx:Panel x="270" y="10" width="125" height="30" layout="absolute" id="panel3" title="Panel 3" click="this.currentState='s3'"/>
      <mx:Button x="167" y="368" label="Reset" click="this.currentState=''"/>
    </mx:Application>

     

    posted on 2011-03-15 15:54 長春語林科技 閱讀(179) 評論(0)  編輯  收藏 所屬分類: flex
    <2011年3月>
    272812345
    6789101112
    13141516171819
    20212223242526
    272829303112
    3456789

     

    長春語林科技歡迎您!

    常用鏈接

    留言簿(6)

    隨筆分類

    隨筆檔案

    文章分類

    文章檔案

    相冊

    收藏夾

    搜索

    •  

    最新評論

    閱讀排行榜

    評論排行榜

    主站蜘蛛池模板: 亚洲av之男人的天堂网站| www.999精品视频观看免费| 国产免费A∨在线播放| 黄床大片30分钟免费看| 午夜在线亚洲男人午在线| 午夜亚洲乱码伦小说区69堂| 国产成人亚洲精品无码AV大片| 国产精品亚洲av色欲三区| 国产午夜亚洲精品不卡电影| 美女黄频a美女大全免费皮| 猫咪www免费人成网站| EEUSS影院WWW在线观看免费| 中文字幕av无码不卡免费| 免费高清国产视频| 国产精品色拉拉免费看| 毛片A级毛片免费播放| 在线视频免费国产成人| 亚洲成片观看四虎永久| 在线观看亚洲成人| 亚洲伊人tv综合网色| 亚洲五月综合缴情婷婷| 久久亚洲精品无码gv| 春意影院午夜爽爽爽免费| 免费看少妇高潮成人片| 最近中文字幕国语免费完整 | 国产色在线|亚洲| 小说区亚洲自拍另类| 国产福利电影一区二区三区,免费久久久久久久精 | 大陆一级毛片免费视频观看| 免费人成在线观看网站视频| 亚洲愉拍99热成人精品热久久 | 亚洲午夜久久久久久久久久| 亚洲电影一区二区| 亚洲不卡影院午夜在线观看| 青青久久精品国产免费看| 在线涩涩免费观看国产精品 | 日韩精品在线免费观看| 免费视频专区一国产盗摄| 四虎永久在线精品免费影视| 国产成人精品日本亚洲| 日韩亚洲国产综合高清|