Re: [flexcoders] Re: richtexteditor focusOut event

2008-11-26 Thread Derrick Anderson
worked like a charm thanks, d. On Tue, Nov 25, 2008 at 2:26 PM, nathanpdaniel [EMAIL PROTECTED] wrote: Add your FocuseEvent.FOCUS_OUT event to the textArea property (more like - child) of your RichTextEditor. Given a RichTextEditor id of rte it'd look like this in AS3:

[flexcoders] Re: richtexteditor focusOut event

2008-11-25 Thread nathanpdaniel
Add your FocuseEvent.FOCUS_OUT event to the textArea property (more like - child) of your RichTextEditor. Given a RichTextEditor id of rte it'd look like this in AS3: rte.textArea.addEventListener(FocusEvent.FOCUS_OUT, onFocusOut); function onFocusOut(event:FocusEvent):void { // add code