AS3更改部分文本颜色

发布于 2024-12-11 04:24:55 字数 279 浏览 0 评论 0原文

我在 AS3 中有一个字符串,由动态分配给 textField 的两个元素组成。

我想让一个元素使用一种颜色,另一个元素使用不同的颜色。

代码如下:

allInfoForSchedules = data[j].weekDay + " " + data[j].scheduleType + ".";

我可以使整个字符串改变颜色,但不仅仅是其中的一部分。

有什么想法吗?

I've got a string in AS3 composed of two elements that is dynamically assigned to a textField.

I want to make one element one color and the other a different color.

Code below:

allInfoForSchedules = data[j].weekDay + " " + data[j].scheduleType + ".";

I can make the entire string change color but not just one part of it.

Any ideas?

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

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

发布评论

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

评论(1

无风消散 2024-12-18 04:24:55

你有两个选择。

  1. 将文本字段转换为启用 html 的文本字段,并使用 html 格式化文本。
  2. 将文本字段转换为 2 个文本字段,文本分开并分别更改它们的颜色

You have two choices.

  1. Convert the textfield to a html enabled textfield and format the text with html.
  2. Convert the textfield into 2 textfield with the texts separated and change color of them separately
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文