Panel Wipe
Source Code: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" > <s:states> <s:State name="One"/> <s:State name="Two"/> </s:states> <!-- Define a transition for all state changes.--> <s:transitions> <s:Transition id="t1" fromState="*" toState="*" > <s:Sequence targets="{[pnl1,pnl2]}"> <s:Sequence id="sequence1" filter="hide" > <s:Wipe direction="right" duration="1000"/> </s:Sequence> </s:Seque...