在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的应用程序的任何想法都会很棒。
xuldev
答案 0 :(得分:0)
没关系 - chrome路径在chrome.manifest中缺少尾部斜杠;)
保罗