为什么无法显示动态文本?
我创建了一个初始文本为“0”的动态文本。
运行此代码时,文本将发生变化
if (hammer_mc.hammerCollision_mc.hitTestObject(this[names].moleCollision_mc)) {
score++;
upCount--;
scoretext.text = int(score).toString();
}
。scoretext.text 是动态文本变量。
我检查并确认变量增加了但无法显示出来。
I had create a dynamic text with initial text "0".
When run this code, the text will change
if (hammer_mc.hammerCollision_mc.hitTestObject(this[names].moleCollision_mc)) {
score++;
upCount--;
scoretext.text = int(score).toString();
}
scoretext.text is the dynamic text variable.
I checked and confirm that the variable got increase but cannot display it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来应该可行。以下是一些需要检查的事项:
Looks like that should work. Here are some things to check: