如何使用 Adobe Air 获取已安装字体的列表?
我找到了一种在 IE 中查找 JavaScript 中已安装字体列表的方法,但是当移动到 Air 时这不起作用。这是因为它使用了 IE 对象 dlgHelper。
我在 Air 中看到过几个提供字体列表的应用程序,我想知道他们是如何获取它的?他们只是调查 Windows 上的字体文件夹吗?有没有更好的方法来查询可以跨平台工作的操作系统?
我正在尝试创建一个不依赖嵌入字体的文本编辑器。我想使用字体菜单,就像您在任何“真正的”桌面应用程序中找到的那样。
I've found a method for finding the list of installed fonts in JavaScript in IE but this does not work when moved to Air. This is because it uses an IE object, dlgHelper.
I've seen several applications in Air that give a list of fonts and I'm wondering how they get it? Are they simply investigating the fonts folder on Windows? Is there a better way to query the operating system that would work cross-platform?
I'm trying to create a text editor that doesn't rely on embedded fonts. I want to use a menu of fonts as you would find in any "real" desktop app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 AIR 中,使用 actionscript 3 您可以使用 Font.enumerateFonts()?
如果您使用的是 ActionScript 3,否则您可能需要 1x1 swf 来与 javascript 通信并传递字体值。
华泰
In AIR, using actionscript 3 you would use Font.enumerateFonts() ?
If you're using actionscript 3 fine, otherwise, you might want to have 1x1 swf that will communicate to javascript and pass the font values over.
HTH