简体   繁体   中英

How to add images into Adobe Flex RichTextEditor?

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

So we have some text editor with RTE a-la editor screenshot http://livedocs.adobe.com/flex/3/html/images/RTE1.png

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 really do not understand how to make it work so if any one can publish simple project with simple (DIRTY IS OK) source it would be grate!)))

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' />"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM