Office js Word 2016的JavaScript加载项(MSO)未显示在顶部工具栏中

Office js Word 2016的JavaScript加载项(MSO)未显示在顶部工具栏中,office-js,word-addins,Office Js,Word Addins,我们使用Word JavaScript API开发了Word加载项,任何在Windows 10上使用Word 2016 MSO(16.0.4939.1000)批量许可证的用户都无法在顶部工具栏中看到加载项 用户可以从AppSource安装并启动外接程序。但是,外接程序应该显示在它自己的自定义选项卡中,但它没有。用户必须在每次启动Word时从“我的插件”菜单重新添加插件 以下是我认为是manifest.xml文件的相关部分: <Requirements> <Sets De

我们使用Word JavaScript API开发了Word加载项,任何在Windows 10上使用Word 2016 MSO(16.0.4939.1000)批量许可证的用户都无法在顶部工具栏中看到加载项

用户可以从AppSource安装并启动外接程序。但是,外接程序应该显示在它自己的自定义选项卡中,但它没有。用户必须在每次启动Word时从“我的插件”菜单重新添加插件

以下是我认为是
manifest.xml
文件的相关部分:

<Requirements>
    <Sets DefaultMinVersion="1.1">
        <Set Name="WordApi" MinVersion="1.1" />
    </Sets>
</Requirements>


XXPanel
注销

上面的配置有什么问题吗

Word 2016批量许可证中的AppSource store中的加载项是否支持自定义选项卡(我知道COM加载项支持自定义选项卡)

是否支持将外接程序添加到现有选项卡

提前感谢,


word 2016不支持Morgan

加载项命令


您可以使用isSetSupport检查外接程序命令需求集。如果不支持,word 2016不支持在任务窗格上创建相关按钮作为解决方法


您可以使用isSetSupport检查外接程序命令需求集。如果不支持,请在taskpane上创建相关按钮作为解决方法

是否可以共享此加载项的名称?我们可以试着看看问题出在哪里is@RaymondLu当然,外接程序是ThoughtRiver合同预筛选:它在我这边工作,它有一个新选项卡显示为ThoughtRiver,我在windows 10上,word版本2004(build 12730)@RaymondLu最新版本(~16.0.4939.1000)上的word批量许可证(MSO)版本出现问题以及之前的所有构建。您能够在该版本或类似版本上测试外接程序吗?该外接程序在Office 365、Mac等设备上运行良好。我不确定Word build 12730的哪个版本适用。请共享此外接程序的名称好吗?我们可以试着看看问题出在哪里is@RaymondLu当然,外接程序是ThoughtRiver合同预筛选:它在我这边工作,它有一个新选项卡显示为ThoughtRiver,我在windows 10上,word版本2004(build 12730)@RaymondLu最新版本(~16.0.4939.1000)上的word批量许可证(MSO)版本出现问题以及之前的所有构建。您能够在该版本或类似版本上测试外接程序吗?外接程序在Office 365、Mac等上运行良好。我不确定Word build 12730的哪个版本适用。感谢您的回复。你能提供更多关于解决方法的信息吗?是否有在任务窗格上创建相关按钮的文档?感谢您的回复。你能提供更多关于解决方法的信息吗?是否有在任务窗格上创建相关按钮的文档?
<CustomTab id="TabXX">
    <Group id="XX.Group1">
        <Label resid="XX.Group1Label" />
        <Icon>
            <!-- Images removed for simplicity -->
        </Icon>
        <Control xsi:type="Button" id="XX.TaskpaneButton">
            <Label resid="XX.TaskpaneButton.Label" />
            <Supertip>
                <Title resid="XX.TaskpaneButton.Label" />
                <Description resid="XX.TaskpaneButton.Tooltip" />
            </Supertip>
            <Icon>
                <!-- Images removed for simplicity -->
            </Icon>
            <Action xsi:type="ShowTaskpane">
                <TaskpaneId>XXPanel</TaskpaneId>
                <SourceLocation resid="XX.Taskpane.Url" />
            </Action>
        </Control>
        <Control xsi:type="Button" id="XX.SignOutButton">
            <Label resid="XX.SignOutButton.Label" />
            <Supertip>
                <Title resid="XX.SignOutButton.Label" />
                <Description resid="XX.SignOutButton.Tooltip" />
            </Supertip>
            <Icon>
                <!-- Images removed for simplicity -->
            </Icon>
            <Action xsi:type="ExecuteFunction">
                <FunctionName>logout</FunctionName>
            </Action>
        </Control>
    </Group>
    <Label resid="XX.CustomTab.Label" />
</CustomTab>
    <Resources>
      <bt:Images>
        <!-- Images removed for simplicity -->
      </bt:Images>
      <bt:Urls>
        <bt:Url id="XX.Taskpane.Url" DefaultValue="https://wordapp.xx.com/index.html?v=1.0.0.0" />
        <bt:Url id="XX.SignOutButton.Url" DefaultValue="https://wordapp.xx.com/#/app/logout" />
        <bt:Url id="XX.GetStarted.LearnMoreUrl" DefaultValue="https://www.xx.com/" />
        <bt:Url id="XX.FunctionFile.Url" DefaultValue="https://wordapp.xx.com/function-file/function-file.html" />
      </bt:Urls>
      <bt:ShortStrings>
        <bt:String id="XX.TaskpaneButton.Label" DefaultValue="XX" />
        <bt:String id="XX.Group1Label" DefaultValue="ThoughtRiver" />
        <bt:String id="XX.CustomTab.Label" DefaultValue="XX" />
        <bt:String id="XX.GetStarted.Title" DefaultValue="Get started with XX!" />
        <bt:String id="XX.SignOutButton.Label" DefaultValue="Sign out" />
      </bt:ShortStrings>
      <bt:LongStrings>
        <bt:String id="XX.TaskpaneButton.Tooltip" DefaultValue="Click to load the add-in" />
        <bt:String id="XX.GetStarted.Description" DefaultValue="The add-in was loaded successfully. Go to the XX tab and click the 'Show Taskpane' button to get started." />
        <bt:String id="XX.SignOutButton.Tooltip" DefaultValue="Click to Sign Out" />
      </bt:LongStrings>
    </Resources>