flex中Parallel与Sequence

发布时间:2009-12-13 04:59:01 阅读:1163次

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Glow id="buttonGlow" color="0x99FF66" alphaFrom="1.0" alphaTo="0.0"  duration="1500"/>
           
<mx:Parallel id="BlurMoveShow" target="{myLabel1}">
    <mx:Blur id="numbersBlur"
        blurYFrom="10.0" blurYTo="0.0"
        blurXFrom="10.0" blurXTo="0.0"
        duration="2000"/>
    <mx:Move id="numbersMove" yBy="20" duration="2000" />
</mx:Parallel>

<mx:Sequence id="sBlurMoveShow" target="{myLabel2}">
    <mx:Blur id="snumbersBlur"
        blurYFrom="10.0" blurYTo="0.0"
        blurXFrom="10.0" blurXTo="0.0"
        duration="2000"/>
    <mx:Move id="snumbersMove" yBy="100" duration="2000" />
</mx:Sequence>

 

<mx:Panel x="462" y="27" width="373" height="456" layout="absolute">
  <mx:Button x="34" y="10" label="View" id="myButton1" click="BlurMoveShow.play(); myLabel1.visible=true;" mouseDownEffect="buttonGlow" />
  <mx:Button x="190" y="10" label="View" id="myButton2" click="sBlurMoveShow.play(); myLabel2.visible=true;" mouseDownEffect="buttonGlow" />       
  <mx:Label x="34" y="58" text="4 8 15 16 23 42" id="myLabel1" visible="true"/>
  <mx:Label x="190" y="58" text="4 8 15 16 23 42" id="myLabel2" visible="true"/>
</mx:Panel>
</mx:Application>

如有问题,可以QQ搜索群1028468525加入群聊,欢迎一起研究技术

支付宝 微信

有疑问联系站长,请联系QQ:QQ咨询
上一篇:flex树型菜单
下一篇:flex中iris

转载请注明:flex中Parallel与Sequence 出自老鄢博客 | 欢迎分享