Posted by: vx on: May 25, 2009
Caching of image data in your Flex application is one of the best ways to avoid loading those large images again and again, and this can improve performance and reduce overhead of loading external resources.
We are not discussing about using the cacheAsBitmap property to improve rendering performance or the cachePolicy property to speed up animations. [...]
Posted by: vx on: May 25, 2009
Date objects don’t have a built-in compare() method, but comparing dates easy.Don’t look at the Date objects , but rather the values represented by the objects using the Date.getTime() method:
Date.getTime() : Returns the number of milliseconds since midnight January 1, 1970, universal time, for a Date object. Use this method to represent a specific instant [...]
Posted by: vx on: May 21, 2009
to see large version, right click save as image
Posted by: vx on: May 21, 2009
the Bindable tag is widely used in flex and in simpleterms its used to bind an entity to other entity if there is a change in the source.
The tag can have the following form:
[Bindable]
public var foo;
The Flex compiler automatically generates an event named propertyChange for the property. If the property value remains the same on [...]
Comments