|
|
|||
Flex/ Flash Optimization
How can we optimized flash flex based applications.
In case of gaming and animation, flash rocks. In term of data centric application, pagination and caching, what are the ways we can optimized flex based applications. 2 Replies
Typed objects perform better than "generic" objects or XML. AMF compresses data that is being transmitted, so it transfers more quickly. View components that extend UIComponent are more efficient than classes that extend Container (this is most important when working with repeated components, like itemRenderers).
Do you have something specific you're interested in optimizing? These are general guidelines, but it's hard to know exactly what you have or haven't tried to answer your question.
In order to optimize your application, you need to find the bottlenecks first. There are some things you might want to avoid, like a heavy use of data binding for example in mxml. While it is a convenient feature, there are also some drawbacks.
Just some input... i hope it is helpful for one or the other. |
|||
|