- Flex - Printing Support
- Flex - Internationalization
- Flex - Debug Application
- Flex - FlexUnit Integration
- Flex - RPC Services
- Flex - Custom Controls
- Flex - Event Handling
- Flex - Visual Effects
- Flex - Layout Panels
- Flex - Complex Controls
- Flex - Form Controls
- Flex - Basic Controls
- Flex - Data Binding
- Flex - Style with Skin
- Flex - Style with CSS
- Flex - Life Cycle Phases
- Flex - Deploy Application
- Flex - Create Application
- Flex - Applications
- Flex - Environment
- Flex - Overview
- Flex - Home
Adobe Flex Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Flex - Visual Effects
We can add behavior to flex apppcation using the concept of Effects. For example, when a text box gets focus, we can make its text become bolder and make its size spght bigger.
Every effect inherits properties from Effect class which in turn inherits properties from EventDispatcher and other top level classes.
Sr.No | Effect & Description |
---|---|
1 | The Effect class is an abstract base class that defines the basic functionapty of all Flex effects. This class defines the base factory class for all effects. |
Basic Effects
Following are the few important Basic Visual Effects −
Sr.No | Effect & Description |
---|---|
1 | The Fade effect animates the alpha property of a component. |
2 | The WipeLeft class defines a wipe left effect. |
3 | The WipeRight class defines a wipe right effect. |
4 | The Move3D class moves a target object in the x, y, and z dimensions. |
5 | The Scale3D class scales a target object in three dimensions around the transform center. |
6 | The Rotate3D class rotate a target object in three dimensions around the x, y, or z axes. |
7 | This Animate effect animates an arbitrary set of properties between values. Specify the properties and values to animate by setting the motionPaths property. |