Search Flex Components Free

Custom Search

December 25, 2007

Flex Sequence Effect Source Code

Flex Custom Effects Defined Declaratively Sample Source Code:
Create a file:
SequenceEffectsDemo.mxml

<?xml version="1.0" encoding="utf-8"?>

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundAlpha="0">

<mx:Sequence id="jump" target="{img}">
<mx:Move yBy="-50"/>
<mx:Move yBy="50"/>
</mx:Sequence>

<mx:Panel title="Sequence Effect Demo" width="100%" height="100%">

<mx:Canvas id="canvas" width="100%" height="100%">

<mx:Image id="img" x="{canvas.width/2 - img.width/2}" y="{canvas.height/2 - img.height/2}"
source="@Embed('../assets/products/Nokia_6630.png')"/>

</mx:Canvas>

<mx:ControlBar>
<mx:Button label="Jump" click="jump.play()"/>
</mx:ControlBar>

</mx:Panel>

</mx:Application>




Related Flex Tutorials