vote up 2 vote down star

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?

flag

1 Answer

vote up 6 vote down check

OK, that was lazyweb at its best. Of course it's also in TFM, and actually quite neat. In AS, you do:

package myComponents
{
    // as/myComponents/TextAreaFontControl.as    
    import mx.controls.TextArea;

    public class TextAreaFontControl extends TextArea 
    {

        // add / change behaviour, properties etc. ...

    }

}

and then in MXML, you do:

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
   xmlns:MyComp="myComponents.*">

<!-- ... -->

<MyComp:TextAreaFontControl />

Cool.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.