如何将图像添加到 Adob​​e Flex RichTextEditor 中? [英] How to add images into Adobe Flex RichTextEditor?

查看:26
本文介绍了如何将图像添加到 Adob​​e Flex RichTextEditor 中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将图像添加到 .>

所以

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

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

这篇关于如何将图像添加到 Adob​​e Flex RichTextEditor 中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆