在 Flash 应用程序中使用操作系统字体而不嵌入它
我开始本地化我的 Flash 应用程序。 我想看看是否有办法回滚日语等语言的默认操作系统字体,这样我就不必嵌入它们。 到目前为止我在网上没有找到任何东西。 我目前正在使用 css 来定义字体系列,例如:
@font-face
{
fontFamily: "Tuffy Regular";
src:url("/assets/fonts/Tuffy-Regular.ttf");
embedAsCFF: true;
}
对此有什么建议吗?
谢谢奥利维尔
I'm starting to localize my flash application.
I'm trying to see if there is a way to rollback on default operating system fonts for languages like japanese so I don't have to embed them.
So far I didn't find anything online.
I'm currently using css to define the font family like :
@font-face
{
fontFamily: "Tuffy Regular";
src:url("/assets/fonts/Tuffy-Regular.ttf");
embedAsCFF: true;
}
Any advice on this ?
Thanks
Olivier
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 AS3 中,您可以通过两种方式设置文本样式:使用 TextFormat 和使用 StyleSheet。
您想使用样式表:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/StyleSheet.html?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6
并且您希望使用 fontFamily 属性来指定所需的字体系列。
这是一个工作示例:
}
In AS3 you can style text 2 ways, with TextFormat, and with StyleSheet.
You want to use StyleSheet:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/StyleSheet.html?filter_flash=cs5&filter_flashplayer=10.2&filter_air=2.6
And you want to use the fontFamily attribute to specify the font families you want.
Here is a working example:
}