How to add a custom context menu to a Spark TextArea in Flex 4

There is a current known issue with adding custom context menus on a RichEditableText Spark component:
http://bugs.adobe.com/jira/browse/SDK-23926

This includes the TextArea component. Essentially, any custom context menus will not show up. There is a work around mentioned in the comments for the bug on Adobe’s website but I thought I would re-hash and show an example since this had me a bit stumped.

The work around is to attach the context menu to the TextArea’s TextDisplay object via the “textDisplay()” accessor method. I have created a simple example with source.



    
        
    
    
        
    
    
        
    
    

Comments

2 responses to “How to add a custom context menu to a Spark TextArea in Flex 4”

  1. Rathna Avatar
    Rathna

    Hi,
    I got issue it he following line.
    “textArea.textDisplay.contextMenu = cm;”.
    There is no property called “textDisplay” associated with TextArea,
    please help me..

  2. Take2rec Avatar
    Take2rec

    Rathna,
    textDisplay is part of the Spark skin for TextArea.
    Make sure that you use the Spark theme when compiling your app.

Leave a Reply