views:

411

answers:

1

How to add images into Adobe Flex Builder RichTextEditor control? I mean using a button =)

So we have some text edior with RTE a-la alt text

We want to get into its content images using some button. How to do such thing?

BTW: I found this http://anotherflava.com/2009/01/12/flex-xhtml-rich-text-editor-w-images/ but I realy do not understand how to make it work so if any one can publish simple project with simple (DURTY IS OK) source it would be grate!)))

A: 

RichTextEditor is a complex component which consist of few small components and TextArea. So the problem is how to insert image in TextArea.

TextArea can render simple HTML and <img> tag is supported. More about htmlText property here.

So

var myTextEditor:RichTextEditor = new RichTextEditor();
myTextEditor.htmlText = "<img src='myImage.jpg' />"
zdmytriv