带有动态文本字段的 Flash 自定义字体

发布于 2024-08-16 11:48:28 字数 480 浏览 4 评论 0原文

我正在使用以下代码创建一个文本字段:

window_title = p.createTextField("border"+diepixWindow.NextBorderDepth, p.getNextHighestDepth(), wx1+TITLE_OFFSETX, wy1+TITLE_OFFSETY, ww, 64);
var fformat:TextFormat = new TextFormat();
fformat.font = "TF2 构建";
fformat.size = 36;
window_title.setTextFormat(fformat);
window_title.setNewTextFormat(fformat);

但问题是,如果客户端没有“TF2 Build”字体,则字体将是Times New Roman。
我想知道将字体附加到 .swf 文件。

I am creating a textfield using this code:

window_title = p.createTextField("border"+diepixWindow.NextBorderDepth, p.getNextHighestDepth(), wx1+TITLE_OFFSETX, wy1+TITLE_OFFSETY, ww, 64);
var fformat:TextFormat = new TextFormat();
fformat.font = "TF2 Build";
fformat.size = 36;
window_title.setTextFormat(fformat);
window_title.setNewTextFormat(fformat);

But the problem is, if the client doesn't have the "TF2 Build" font, the font will be Times New Roman.
I would like to know to attach the font to the .swf file.

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

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

发布评论

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

评论(2

三人与歌 2024-08-23 11:48:28

这将解决这个问题:

window_title.embedFonts = true;

不过,您还需要实际将字体嵌入到 swf 文件中。如果您使用的是 Flash 应用程序,请在属性窗口中设置字体,然后只需选中嵌入框。如果您使用 mxmlc,则可以使用 @Embed 嵌入字体。

请参阅此处:http://www.adobe.com/devnet/flash/quickstart/嵌入字体/

This will fix it:

window_title.embedFonts = true;

You also need to actually embed the font in the swf file, though. If you're using the Flash application, set the font in the properties window and then just check the embed box. If you're using mxmlc, you can embed the font with @Embed.

See here: http://www.adobe.com/devnet/flash/quickstart/embedding_fonts/

如梦亦如幻 2024-08-23 11:48:28

如果您的目标是 FP10+,您也可以在普通 AS3 中使用嵌入元标记。
例如,在类中添加:

[Embed(source="C:\WINDOWS\Fonts\myfontfile.ttf", fontFamily="myFont")]

然后...

TextField.embedFonts = true;
myTextFormat.font = "myFont";

在此处查看一个很好的示例: http ://marumushi.com/news/embedding-fonts-in-as3
任何避免库字体链接巫毒的方法都是一个不错的选择。哦,并确保您的字体文件是可接受的字体格式。

You can use the Embed meta tag in plain AS3, too if you're targeting FP10+.
For example, in a class add:

[Embed(source="C:\WINDOWS\Fonts\myfontfile.ttf", fontFamily="myFont")]

Then...

TextField.embedFonts = true;
myTextFormat.font = "myFont";

Check here for a good example: http://marumushi.com/news/embedding-fonts-in-as3
Any way to avoid library font linkage voodoo is a good choice. Oh, and make sure your font file is an accepted font format.

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