在xulrunner中嵌入PDF内容

时间:2013-01-14 22:54:49

标签: pdf plugins xulrunner adobe-reader

在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&amp;navpanes=1&amp;scrollbar=1&amp;page=1&amp;view=FitH"
                    height  = "850px"
                    width   = "1100px"
                />
            </div>
        </html>

    </vbox> 

我现在正在转向xulrunner 17.0.1,我无法让它工作 - Adob​​e Reader在自己的弹出窗口中出错。

我检查了当前Firefox安装中的版本,这是正确的。我还从应用程序配置文件中删除了pluginsreg.dat - 没有成功。

关于如何将内容恢复到基于xulrunner的应用程序的任何想法都会很棒。

xuldev

1 个答案:

答案 0 :(得分:0)

没关系 - chrome路径在chrome.manifest中缺少尾部斜杠;)

保罗