I'm trying to create a simple wipe / slide type transition between 2 states. Similiar to the way the iphone 'slides' from one list to another (ie. inbox > mail listing)
I can't seem to figure out or find correct documentation on how to do this using 2 simple canvas components and transitions where one slides off screen to the left as the other slides in from the right.
I've got the second state 'sliding in' with the following code, but how can I modify to simultaneously 'slide out' the first?
<mx:transitions>
<mx:Transition fromState="summaryState" toState="detailState">
<mx:Parallel target="{contentCanvas}">
<mx:WipeLeft duration="300"/>
</mx:Parallel>
</mx:Transition>
</mx:transitions>
Thanks in advance.