I ran into the same issue. Here are a couple javascript functions used
by another window that is opened and updates that field. You could
probably modify it to work for you.

function getEditorContent(instanceName) {
                        editor_frame =
opener.document.getElementById(instanceName+'___Frame');
                        editor_source =
editor_frame.contentWindow.document.getElementById('eEditorArea');
                        if (editor_source!=null) {
                            return
editor_source.contentWindow.document.body.innerHTML;
                        } else {
                            return '';
                        }
                    }
                    
                   function setEditorContent(instanceName,newContent) {
                        editor_frame =
opener.document.getElementById(instanceName+'___Frame');
                        editor_source =
editor_frame.contentWindow.document.getElementById('eEditorArea');
                        if (editor_source!=null) {
        
editor_source.contentWindow.document.body.innerHTML = newContent;
                        } else {
                            return '';
                        }
                    }
**************************************************************************** 
This email may contain confidential material. 
If you were not an intended recipient, 
Please notify the sender and delete all copies. 
We may monitor email to and from our network. 
****************************************************************************

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265296
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to