Reputation: 1015
I am using Flex 4.5, and i am trying to change the back ground color of richtexteditor but i am not able to do so in flex 4.5 but its working fine in flex 3.
Please Help Me,
Thank You,
Upvotes: 0
Views: 496
Reputation: 3350
You can use contentBackgroundColor property instead of backgroundColor.
<mx:RichTextEditor id="myRTE" text="Congratulations" contentBackgroundColor="red"/>
Upvotes: 1