Spark 文本区域中的 HTML

发布于 2024-10-23 16:10:28 字数 263 浏览 4 评论 0原文

尝试向 Mobile Flex 4.5 中的 TextArea 添加一些 html,但不断收到错误:

“1180:调用可能未定义的 方法 StyleableTextField。”

对于以下行:

StyleableTextField(txtMyText.textDisplay).htmlText = "sample <b>text</b>";

Trying to add some html to a TextArea in Mobile Flex 4.5 but keep getting the error:

"1180: Call to a possibly undefined
method StyleableTextField."

For the following line:

StyleableTextField(txtMyText.textDisplay).htmlText = "sample <b>text</b>";

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦里的微风 2024-10-30 16:10:29

看起来像:

MobileTextField(txtMyText.textDisplay).htmlText = "sample <b>text</b>";

有效。只需导入:

import spark.components.supportClasses.MobileTextField;

即可使其正常工作。

Looks like:

MobileTextField(txtMyText.textDisplay).htmlText = "sample <b>text</b>";

works. Just needed to import:

import spark.components.supportClasses.MobileTextField;

to get it working.

Hello爱情风 2024-10-30 16:10:29

不能直接设置TextArea实例的htmlText属性吗?

像这样的事情:

myTextArea.htmlText = "sample <b>text</b>";

罗布

Can't you set the htmlText property of the TextArea instance directly?

Something like this:

myTextArea.htmlText = "sample <b>text</b>";

Rob

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文