XUL 工具栏不在 FF 工具栏列表中

发布于 2024-10-19 23:54:29 字数 952 浏览 4 评论 0原文

我遇到了以下问题。

我制作了一个 XUL 工具栏。工具栏工作正常,显示正确并且工作正常。唯一的问题是它没有显示在 Firefox 的工具栏列表中。我希望它出现在这个列表中 - 我希望能够从上下文菜单中隐藏/显示它。

我的问题可能出在什么地方? XUL 的组织方式如下:

    <?xml version="1.0" encoding="windows-1251"?>

    <overlay id="myOverlayName"
      xmlns:html="http://www.w3.org/1999/xhtml"
             xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

    <script type="application/x-javascript" src="json.js"></script>
    <script type="application/x-javascript" src="md5.js"></script>
    <script type="application/x-javascript" src="sd.js"></script>


    <toolbox id="navigator-toolbox">
    <toolbar id="somebarid" mode="full" 
        customizable="false" 
        toolbarName="toolbarname" 
    accessibleType="1020" 
    context="toolbar-context-menu" >    
     ...
     ...

    </toolbar>
    </toolbox>

</overlay>

Ive got a following problem.

I made a XUL toolbar. Toolbar works correctly, it is displayed correctly and works fine. The only problem is that it is not displayed in the list of toolbars in Firefox. I want it to be in this list - i want to be able to hide/show it from context menu.

What my problem could be in? XUL is organized in following way:

    <?xml version="1.0" encoding="windows-1251"?>

    <overlay id="myOverlayName"
      xmlns:html="http://www.w3.org/1999/xhtml"
             xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

    <script type="application/x-javascript" src="json.js"></script>
    <script type="application/x-javascript" src="md5.js"></script>
    <script type="application/x-javascript" src="sd.js"></script>


    <toolbox id="navigator-toolbox">
    <toolbar id="somebarid" mode="full" 
        customizable="false" 
        toolbarName="toolbarname" 
    accessibleType="1020" 
    context="toolbar-context-menu" >    
     ...
     ...

    </toolbar>
    </toolbox>

</overlay>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不一样的天空 2024-10-26 23:54:29

toolbarName="toolbarname" 应该:

1) 拼写为 toolbarname

2) 完全匹配 toolbarname RDF 中的字符串。

之后效果很好。

toolbarName="toolbarname" should :

1) be spelled toolbarname

and

2) exactly match <em:name>toolbarname</em:name> string in RDF.

After that it works well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文