开发者

How to add images into Adobe Flex RichTextEditor?

How to add images into Adobe Flex RichTextEditor control? I mean using a 开发者_JAVA百科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' />"
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜