皮肤中的嵌入字体
我在整个应用程序中一直使用 SWC 嵌入字体,并且效果很好。我现在尝试通过将 font-family 属性设置为我一直使用的相同字体名称,在同一项目中的自定义皮肤和自定义项目渲染器中使用相同的字体。我可以将系列设置为设备字体并看到更改,但不能使用嵌入字体。有人有什么想法吗?
这是标签:
<s:Label id="labelDisplay" fontFamily="{Constants.HELVETICA_ULTRALIGHT}" maxDisplayedLines="1" mouseEnabled="false" mouseChildren="false" right="32" minWidth="75" fontSize="25" color="{Constants.COLOR_DARK_PINK}" verticalCenter="2"/>
谢谢!
I have been using a swc embedded font throughout my application and it has worked fine. I am now attempting to use the same font in a custom skin and a custom item renderer, both within the same project, by setting the font-family attribute to the same font name I have been using throughout. I am able to set the family to device fonts and see the change, though not with the embedded font. Does anyone have any thoughts?
Here is the label:
<s:Label id="labelDisplay" fontFamily="{Constants.HELVETICA_ULTRALIGHT}" maxDisplayedLines="1" mouseEnabled="false" mouseChildren="false" right="32" minWidth="75" fontSize="25" color="{Constants.COLOR_DARK_PINK}" verticalCenter="2"/>
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,所以我从使用 SWC 嵌入字体改为使用 CSS。这解决了我的问题,除了 3 种字体中的 2 种在我将 embedAsCFF 更改为 false 之前不起作用,这很奇怪,因为我只使用 Spark 组件中的字体。哦,好吧,现在可以了。
谢谢!
Ok, so I switched from embedding the fonts with a swc and used css. This took care of my issues, aside from 2 of the 3 fonts didn't work until I changed embedAsCFF to false which is odd because I'm only using the fonts in spark components. Oh well, works now.
Thanks!