Tag Archive for 'linktextinput'

04
Dec

Hiding nested controls in a Flex RichTextEditor control (remix)

In a previous example, Hiding nested controls in a Flex RichTextEditor control, we looked at how you could hide and remove the nested link text input control within a RichTextEditor control in Flex. The following example extends the example somewhat by allowing you to remove any of the nested controls (including the VRule controls) in in the tool bar by setting the nested control’s visible property to false, as seen in the following snippet:

richTextEditor.colorPicker.visible = false;

Full code after the jump.

Continue reading ‘Hiding nested controls in a Flex RichTextEditor control (remix)’

23
Nov

Hiding nested controls in a Flex RichTextEditor control

The following example shows you how you can toggle the RichTextEditor control’s nested link text input by setting both the visible and includeInLayout properties of the control.

Full code after the jump.

Continue reading ‘Hiding nested controls in a Flex RichTextEditor control’