AS3更改部分文本颜色
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有两个选择。
You have two choices.