为什么无法显示动态文本?

发布于 2025-01-07 06:13:24 字数 316 浏览 1 评论 0原文

我创建了一个初始文本为“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 技术交流群。

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

发布评论

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

评论(1

自在安然 2025-01-14 06:13:24

看起来应该可行。以下是一些需要检查的事项:

  • 字体已嵌入(动态文本字段中的非系统字体必需)
  • 文本字段足够大
  • 字体大小合适
  • 字体颜色与背景颜色不同

Looks like that should work. Here are some things to check:

  • the font is embedded (necessary for non-system fonts in dynamic text fields)
  • the text field is large enough
  • the font size is appropriate
  • the font color is not the same as the background color
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文