Parallel effect with : Parallel Effect « Effects « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Effects » Parallel EffectScreenshots 
Parallel effect with
Parallel effect with <mx:Parallel>
    


<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Parallel id="ZoomRotateShow">
        <mx:Zoom id="myZoomShow" zoomHeightFrom="0.0" zoomWidthFrom="0.0" zoomHeightTo="1.0" zoomWidthTo="1.0" />
        <mx:Rotate id="myRotateShow" />
    </mx:Parallel>

    <mx:VBox id="myBox" height="100" width="200">
        <mx:TextArea id="aTextArea" text="hello" showEffect="{ZoomRotateShow}" />
    </mx:VBox>
    <mx:Button id="myButton1" label="Show!" click="aTextArea.visible=true;" />
    <mx:Button id="myButton2" label="Hide!" click="aTextArea.visible=false;" />
</mx:Application>

   
    
    
    
  
Related examples in the same category
1.Add various effects to ParallelAdd various effects to Parallel
2.Play effects from a ParallelPlay effects from a Parallel
3.Parallel effects for moving
w__w__w_._j__a_va__2___s.__co___m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.