Composite Effects : Effect « Effects « Flex






Composite Effects

Composite Effects
   


<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->



    <!-- behaviors\CompositeEffects.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark">
    <s:layout>
        <s:VerticalLayout />
    </s:layout>
    <fx:Declarations>
        <s:Sequence id="fadeResizeHide" target="{aTextArea}"
            duration="1000">
            <s:Fade id="fadeHide" alphaFrom="1.0" alphaTo="0.0" />
            <s:Resize id="resizeHide" widthTo="0" heightTo="0" />
        </s:Sequence>
        <s:Parallel id="fadeResizeShow" target="{aTextArea}"
            duration="1000">
            <s:Resize id="resizeShow" widthTo="100" heightTo="50" />
            <s:Fade id="fadeShow" alphaFrom="0.0" alphaTo="1.0" />
        </s:Parallel>
    </fx:Declarations>
    <s:TextArea id="aTextArea" width="100" height="50" text="Hello world." />
    <s:Button id="myButton2" label="Hide!"
        click="fadeResizeHide.end();fadeResizeHide.play();" />
    <s:Button id="myButton1" label="Show!"
        click="fadeResizeShow.end();fadeResizeShow.play();" />
</s:Application>

   
    
    
  








Related examples in the same category

1.Creating an instance of an effect using pure ActionScriptCreating an instance of an effect using pure ActionScript
2.Creating a reusable effect in ActionScript with Move classCreating a reusable effect in ActionScript with Move class
3.Define effect in MXML, use ActionScript to apply itDefine effect in MXML, use ActionScript to apply it
4.Effect With ActionScript
5.Use ActionScript to play EffectUse ActionScript to play Effect
6.Grouping effects and playing them one after anotherGrouping effects and playing them one after another
7.Playing multiple effects at the same timePlaying multiple effects at the same time
8.Use a class selector to apply effectsUse a class selector to apply effects
9.Using MXML to define the effectUsing MXML to define the effect
10.Applying behaviors using the Effect.target and Effect.targets propertiesApplying behaviors using the Effect.target and Effect.targets properties
11.Setting effect durationsSetting effect durations
12.Add show effect to a controlAdd show effect to a control
13.Play effect for more than one controlsPlay effect for more than one controls
14.Set effect targetSet effect target
15.Reverse an EffectReverse an Effect
16.Pause an EffectPause an Effect
17.Enable Composite EffectsEnable Composite Effects
18.Using the Pause effect to pause between two other effectsUsing the Pause effect to pause between two other effects
19.Using easing functions with the Move effect to make motion less linearUsing easing functions with the Move effect to make motion less linear
20.rollOverEffect and rollOutEffectrollOverEffect and rollOutEffect
21.Create, configure, and apply effects to Flex componentsCreate, configure, and apply effects to Flex components
22.Mouse down effect for an Image controlMouse down effect for an Image control
23.specify the mx.effects.easing.Bounce.easeOut() method to the Accordionspecify the mx.effects.easing.Bounce.easeOut() method to the Accordion
24.Chart show data effectChart show data effect
25.Check property in effect filer functionCheck property in effect filer function
26.SeriesInterpolate effectSeriesInterpolate effect
27.Apply Shadow effectApply Shadow effect
28.Insertion's effect on the Array and the ArrayCollection representation of the ArrayInsertion's effect on the Array and the ArrayCollection representation of the Array
29.Applying MX effects in MXMLApplying MX effects in MXML
30.List Effect Custom and Default EffectsList Effect Custom and Default Effects
31.Easing function that creates a bounce motion when combined with the Flex Move effectEasing function that creates a bounce motion when combined with the Flex Move effect
32.Repeat EffectsRepeat Effects
33.Applying transform effectsApplying transform effects