<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute”>

<!–Defining Effects–>
<mx:WipeLeft id=”wplf”  duration=”5000″ />
<mx:WipeRight id=”wprg” duration=”5000″/>
<mx:Panel  title=”Trigger Effects” paddingBottom=”10″ paddingTop=”10″
paddingLeft=”10″ paddingRight=”10″ y=”0″ x=”10″ height=”100%” width=”100%”>
<mx:Button label=”Wiping Right”  mouseUpEffect=”{wprg}” />
<mx:Image id=”img1″ source=”flower2.jpg” height=”149″ width=”200″
mouseUpEffect=”{wprg}”/>
<mx:Button id=”b1″ label=”Wiping Left”  mouseDownEffect=”{wplf}”/>
<mx:Image id=”img” source=”flowers.jpg” height=”149″ width=”200″
mouseDownEffect=”{wplf}” />
<mx:ControlBar height=”94″>
</mx:ControlBar>
</mx:Panel>
</mx:Application>

Advertisement