I recently discovered that data binding doesn't work with Vectors in Flash Builder. I have reported a bug at the
adobe bug base you can read more about the issue here
I recently stumbled across this awesome project by somerandomdude and just wanted to give it some exposure as it is open source and even in 3D
I was strolling through the UIComponent source code earlier today when i cam across this line of code.
//--------------------------------------------------------------------------
//
// Class mixins
//
//--------------------------------------------------------------------------
/**
* @private
* Placeholder for mixin by UIComponentAccImpl.
*/
mx_internal static var createAccessibilityImplementation:Function;
I wasn't entirely sure what a mixin was but after reading up on wikipedia I realized they are exactly what they sound like basically just a mix of code bases. There is a really good post over on the yahoo flash blog about accessibility and the way in which Flex uses the
[AccessibilityClass(implementation="mx.accessibility.UIComponentAccImpl")]
meta data to mixin the Accessibility code into the UIComponent implementation.