在 textField.htmlText 中使用字体颜色的最佳方法

发布于 2024-07-13 09:00:07 字数 212 浏览 5 评论 0原文

textField.htmlText 中使用超过 1 种字体颜色的最佳方法是什么?

我已经使用了这样的代码:

textField.htmlText = "blaa blaa" + "< u >"+w+"< /u >"+"blaa blaa"

我怎样才能定义特定的颜色?

What is the best way to use more than 1 font color with textField.htmlText?

I already use code like:

textField.htmlText = "blaa blaa" + "< u >"+w+"< /u >"+"blaa blaa"

How can I make that to define a specific color as well?

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

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

发布评论

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

评论(2

带上头具痛哭 2024-07-20 09:00:07

使用 flash.text.StyleSheet

var style:StyleSheet = new StyleSheet();
var underline:Object = new Object();
underline.fontWeight = "bold";
underline.color = "#FF0000";
underline.display = "inline";

style.setStyle("u", underline);

textField.styleSheet = style;
textField.htmlText = "blaa blaa" + "< u >"+w+"< /u >"+"blaa blaa"

Use flash.text.StyleSheet

var style:StyleSheet = new StyleSheet();
var underline:Object = new Object();
underline.fontWeight = "bold";
underline.color = "#FF0000";
underline.display = "inline";

style.setStyle("u", underline);

textField.styleSheet = style;
textField.htmlText = "blaa blaa" + "< u >"+w+"< /u >"+"blaa blaa"
手长情犹 2024-07-20 09:00:07

字体标签更容易

FONT Tag is easier

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