MX Sequence Effect in Flex4


 

MX Sequence Effect in Flex4

The Sequence effect is used to play multiple effects one after the other according they are added.

The Sequence effect is used to play multiple effects one after the other according they are added.

MX Sequence Effect in Flex4:

The Sequence effect is used to play multiple effects one after the other according they are added. The tag of Sequence Effect is <mx:Sequence>. In this example you can see how we can use Sequence Effect in application.

Example:

<?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">

<fx:Declarations>

<!-- Sequence Effect -->

<mx:Sequence id="sequenceEffect">

<mx:Zoom id="zoomIn"

originX="175"

originY="50"

zoomHeightTo="1.5"

zoomWidthTo="1.5"

duration="1500"/>

<mx:Rotate id="imageRotate"

originX="175"

originY="50"

angleFrom="0"

angleTo="360"

duration="500"

repeatCount="1"/>

<mx:Pause/>

<mx:Rotate id="imageRotate1"

originX="175"

originY="50"

angleFrom="360"

angleTo="0"

duration="500"

repeatCount="1"/>

0

<mx:Zoom id="zoomOUT"

originX="175"

originY="50"

1

zoomHeightTo="1.0"

zoomWidthTo="1.0"

duration="1500"/>

2

</mx:Sequence>

</fx:Declarations>

<s:Panel title="MX Sequence Effect Example"

3

width="497" height="458"

chromeColor="#000000" color="#CCCCCC">

<mx:ApplicationControlBar width="496" horizontalAlign="center">

4

<s:Label text="Click on image and show the effect."

fontFamily="verdana" color="#000000"/>

</mx:ApplicationControlBar>

5

<mx:Image id="roseindia"

source="@Embed(source='file:/C:/work/bikrant/image/roseindia.gif')"

x="125" y="191"

6

mouseDownEffect="{sequenceEffect}"

width="245" height="81"/>

</s:Panel>

7

</s:Application>

Output:

Running Application:

To view this page ensure that Adobe Flash Player version 10.0.0 or greater is installed.

8

Download this code

Ads