在 xulrunner 1.9.2 上,我可以将 Adobe Reader 插件放入我的 xulrunner 应用程序的 /plugins 并加载内容:
<vbox minwidth="200">
<html xmlns = "http://www.w3.org/1999/xhtml" >
<div id="htmlDiv">
<embed
id = "pdfObject"
type = "application/pdf"
src = "chrome://manuals/content/test.pdf#toolbar=1&navpanes=1&scrollbar=1&page=1&view=FitH"
height = "850px"
width = "1100px"
/>
</div>
</html>
</vbox>
我现在正在迁移到 xulrunner 17.0.1,但我无法让它工作 - Adobe Reader 在它自己的弹出窗口中给出了一个错误。
我检查了当前 Firefox 安装中的版本,它是正确的。我还从应用程序配置文件中删除了 pluginsreg.dat - 没有成功。
任何关于如何将内容恢复到基于 xulrunner 的应用程序的想法都会很棒。
许德夫