我需要有关 tlf 字体和 as3 的帮助。导出时出现错误警告:多个 TLF 对象

发布于 2024-10-17 09:28:01 字数 200 浏览 8 评论 0原文

我在 Flash 网站上使用自定义字体,但收到一条错误消息“警告:多个 TLF 对象具有相同的实例名称。TLF 实例名称必须是唯一的。导出期间,除其中一个实例名称外,所有实例名称都将被重命名。” 。请让我知道我需要做什么来解决这个问题。它位于 digital-universe- electronics.com 上,您会注意到该字体在多个项目上不起​​作用,我确实需要修复它。提前致谢。

I'm using a custom font on my flash website and am getting an error message "WARNING: Multiple TLF objects have the same instance name. TLF instance names must be unique. All but one of the instance names will be renamed during export.". Please let me know what I need to do to fix this. It's on digital-universe-electronics.com, and you'll notice the font not working on several items, and I really need to fix it. Thanks in advance.

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

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

发布评论

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

评论(1

给不了的爱 2024-10-24 09:28:01

您放置在舞台上的至少两个 TLFTextField 似乎具有相同的实例名称,该名称是您在 Flash IDE 的属性面板中输入的名称。这意味着舞台上有多个对象使用相同的名称,同时由 ActionScript 寻址(可以在不同的帧中这样做)。

您应该始终确保所有阶段实例的名称都是唯一的,而不仅仅是文本字段。您可以使用“电影资源管理器”窗口方便地检查相同的名称。只需双击要更改名称的实例,属性面板就会打开。

如果您不需要从 ActionScript 进行命名访问,您还可以将名称字段留空,这会导致 Flash 播放器分配通用名称(“实例”+数字)。

At least two TLFTextFields you have placed on the stage seem to have the same instance name, which is the name you entered in the properties panel of your Flash IDE. This means that you have more than one object on the stage using the same name to be addressed by ActionScript, at the same time (it's okay to do so in different frames).

You should always make sure you have unique names for all stage instances, not just text fields. You can use the Movie Explorer window to conveniently check for identical names. Just double-click the instance whose name you want to change, and the properties panel will open.

You could also leave the name field blank, which causes the Flash player to assign a generic name ("instance"+number), if you don't need to have named access from ActionScript.

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