2014-07-11 64 views
0

我为我们的员工在PowerPoint中制作了自定义功能区。功能区上的大多数命令链接到定制的VBA脚本,但我想包含一个标准的MSO Gallery命令(MSO:SlideNewGallery)。将MSO图库命令添加到自定义PowerPoint功能区

我已成功将按钮添加到功能区。看起来不错,但不起作用。我不知道如何将该操作调用到标准的MSO图库命令。我尝试编写VBA脚本,但在VBA中画廊命令不能很好地工作,因此脚本只是创建一个新幻灯片,并且不显示SlideNewGallery选项。

我是自学成才的,我想我可能只是错过了一些非常简单的东西。

我的问题:

  • 我应该怎么办?
  • 我应该在VBA或XML中执行此操作吗?

这是我区XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="RibbonControl.Onload"> 
     <ribbon> 
      <tabs> 
       <tab id="CustomTab1" label="Insurance"> 
        <group id="CustGrp1" label="Template" > 
         <button id="Btn1" label="New Presentation" screentip="Create a new presentation" image="Default" size="large" onAction="RibbonControl.MyBtnMacro" /> 
        </group> 
        <group id="CustGrp20" label="Insurance Resources" > 
         <gallery id="SlideNewGallery" label="New Slide" screentip="Insert an new slide" imageMso="SlideNewGallery" size="large" onAction="RibbonControl.MyBtnMacro" /> 
         <button id="Btn22" label="Insert Herman" screentip="Insert a Herman Picture" image="HermanIcon" size="large" onAction="RibbonControl.MyBtnMacro" /> 
         <button id="Btn23" label="Insert Logo" screentip="Insert a logo for OMA Insurance or any of our affilliates" image="OMAInsurance" size="large" onAction="RibbonControl.MyBtnMacro" /> 
         <button id="Btn21" label="Content Ideas" screentip="See or copy our favourite insurance presentations" imageMso="BuildingBlockProperties" size="large" 
         onAction="RibbonControl.MyBtnMacro" /> 
         <button id="Btn24" label="Insurance Brand Standards" screentip="Go to the Insurance Brand Standards Document" image="Brand" size="large" onAction="RibbonControl.MyBtnMacro" /> 
        </group> 
        <group id="CustGrp3" label="Tools" > 
         <button id="Btn30" label="Convert to Brand" screentip="Convert this Presentation to BRAND style" image="Convert" size="large" onAction="RibbonControl.MyBtnMacro" /> 
         <button id="Btn31" label="Reset Slide" screentip="Apply the fonts and layouts of our Brand" imageMso="QuickStepsGallery" size="large" 
         onAction="RibbonControl.MyBtnMacro" /> 
         <button id="Btn32" label="Insert Asterisk" screentip="Insert an Asterisk" image="AsteriskIcon" size="large" onAction="RibbonControl.MyBtnMacro" /> 
         <button id="Btn33" label="Select Everything" screentip="Select all the text in the active area" imageMso="LassoSelect" size="large" onAction="RibbonControl.MyBtnMacro" /> 
        </group> 
       </tab> 
      </tabs> 
     </ribbon> 
    </customUI> 
+0

它应该可能是'

回答

0

使用

  <control idMso="SlideNewGallery" 
       size="large"/> 

如果使用相册时,缩略图可能不会更新正确

1

感谢您的帮助,我终于得到了一切通过把mso放在每个元素的前面来工作。

我不太清楚为什么这会奏效......但现在一切都很好。以下是工作代码。

<mso:customUI xmlns:mso="http://schemas.microsoft.com/office/2009/07/customui"><mso:ribbon><mso:tabs><mso:tab id="CustomTab1" label="Insurance"> 

<mso:group id="CustGrp1" label="Template" ><mso:button id="Btn1" label="New Presentation" screentip="Create a new presentation" image="Default" size="large" onAction="RibbonControl.MyBtnMacro" /><mso:gallery idQ="mso:SlideNewGallery" size="large" showInRibbon="false" visible="true"/> 
</mso:group> 

<mso:group id="CustGrp2" label="Insurance Resources" > 
<mso:button id="Btn22" label="Insert Herman" screentip="Insert a Herman Picture" image="HermanIcon" size="large" onAction="RibbonControl.MyBtnMacro" /> 
<mso:button id="Btn23" label="Insert Logo" screentip="Insert a logo for OMA Insurance or any of our affilliates" image="OMAInsurance" size="large" onAction="RibbonControl.MyBtnMacro" /> 
<mso:button id="Btn21" label="Content Ideas" screentip="See or copy our favourite insurance presentations" imageMso="BuildingBlockProperties" size="large" onAction="RibbonControl.MyBtnMacro" /> 
<mso:button id="Btn24" label="Insurance Brand Standards" screentip="Go to the Insurance Brand Standards Document" image="Brand" size="large" onAction="RibbonControl.MyBtnMacro" /> 
</mso:group> 


<mso:group id="CustGrp3" label="Tools" > 
<mso:button id="Btn30" label="Convert to Brand" screentip="Convert this Presentation to BRAND style" image="Convert" size="large" onAction="RibbonControl.MyBtnMacro" /> 
<mso:button id="Btn31" label="Reset Slide" screentip="Apply the fonts and layouts of our Brand" imageMso="QuickStepsGallery" size="large" onAction="RibbonControl.MyBtnMacro" /> 
<mso:button id="Btn32" label="Insert Asterisk" screentip="Insert an Asterisk" image="AsteriskIcon" size="large" onAction="RibbonControl.MyBtnMacro" /> 
<mso:button id="Btn33" label="Select Everything" screentip="Select all the text in the active area" imageMso="LassoSelect" size="large" onAction="RibbonControl.MyBtnMacro" /> 
</mso:group> 

</mso:tab></mso:tabs></mso:ribbon></mso:customUI> 
相关问题