<?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.3"  duration="1500"/>
 
 <mx:Parallel id="BlurMoveShow" target="{myLabel}">
  <mx:Blur id="numbersBlur" target="{myLabel}" blurXFrom="10.0" blurXTo="0.0"  blurYFrom="10.0" blurYTo="0.0" duration="2000"/>
 <mx:Move id="numbersMove" yBy="100" duration="2000"/>
 </mx:Parallel>
 <mx:Panel width="200" height="300" x="10" y="10"  >
  <mx:Button id="myButton" label="View" x="40" y="60" mouseUpEffect="{buttonGlow}" click="BlurMoveShow.play();"/>
  <mx:Label id="myLabel"    text="131313131313131" x="40" y="100" />
 </mx:Panel>
</mx:Application>
posted on 2009-10-31 09:56  sweting  阅读(164)  评论(0编辑  收藏  举报