1/4/2011 10:40:39 PM
Title:
About Rich Text Editor control flex 4
I am very new to flex. I am having rich text editor in my flex 4 application.; I want to change its header and footer color to black. i applied property backgroundColor="#000000", but its not working. How to change its color?? I dnt want to change text Area color. nly header and footer color .
Please reply urgently
Thanks a lot
1/5/2011 6:35:46 AM
you can change the header and footer colors of the richTextEditor in flex , see this code
<mx:RichTextEditor id="rt1" backgroundColor="#ccffcc" width="500"
headerColors="[#88bb88, #bbeebb]" footerColors="[#bbeebb, #88bb88]"
title="Rich Text Editor" htmlText="{htmlData}"
initialize="rte1.textArea.setStyle('backgroundColor', '0xeeffee')" />