Meaning, if I have:
<mx:Tree>
<!-- ... -->
</mx:Tree>
and I want to change some of the control's behaviour or add functionality, by doing (in AS):
class ChristmasTree extends mx.controls.Tree {
// ...
}
how do I change the MXML so that my class is used?
In the manual it says how to extend components via MXML, but how do I do it with AS?