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