The following example shows how you can toggle the RichTextEditor component’s control bar using the showControlBar property.
Full code after the jump.
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/11/21/toggling-the-control-bar-in-a-flex-richtexteditor-control/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:ApplicationControlBar dock="true">
<mx:Form styleName="plain">
<mx:FormItem label="showControlBar:">
<mx:CheckBox id="checkBox" selected="true" />
</mx:FormItem>
</mx:Form>
</mx:ApplicationControlBar>
<mx:RichTextEditor id="richTextEditor"
title="Rich Text Editor"
showControlBar="{checkBox.selected}" />
</mx:Application>
View source is enabled in the following example.





This is cool. I’m deadly curious to find out if it’s possible to do two other things with the Rich Text Editor component:
1) Can the control bar buttons etc be skinned and/or customized?
2) Can the control bar positioned anywhere in the RTE design area? Eg., be positioned above the text area sitting right on the top edge with zero-clearence.
tonejac deluxe
you can style the control bar with
setStyle(prop:String, value)- wherepropis one of numerous styles in the componenet’s API.However, i have teh same question regarding positioning of the control bar. Cant work out how to place it above the text Area.
this will put the toolbar above the textArea
its a weird roundabout way of doing it but was the only way i could work out how to target the ControlBar (it has no id and doesnt seem to be targettable directly through the DisplayList. Weird).