Create, configure, and apply effects to Flex components

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:WipeLeft id="myWL" duration="1000" />
<mx:Button id="myButton" mouseDownEffect="{myWL}" />
<mx:Button id="myOtherButton" mouseDownEffect="{myWL}" />
</mx:Application>
Related examples in the same category