编辑Word工具提示

时间:2013-10-25 13:40:51

标签: ms-word ms-office tooltip

如何编辑将光标移到图标上时出现的框。在Word或宏的菜单中。我已经尝试了Word提供的所有选项,甚至是Visual Basic脚本。我搜索但没有成功。提前谢谢。

1 个答案:

答案 0 :(得分:0)

在Word 2007或Word 2010中,工具提示(工具栏图标上的弹出文本)在Office XML文件中指定。

  1. 将您的宏放在将成为插件的.docx或.dotx文件中。
  2. 使用描述here的工具将XML部件添加到该.docx或.dotx文档中。
  3. 在XML部分中,描述工具栏上可能需要的任何按钮或其他控件。文档here告诉您可以使用的XML。要更改工具提示,请设置screentipsupertip字段。示例XML文件是:

    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
      <ribbon startFromScratch="false">
        <tabs>
           <!-- Your tabs and controls go here -->
           <tab id="CustomTab" label="My Tab">
             <group id="SampleGroup" label="Sample Group">
               <button id="Button1" label="My Large Button" 
                 size="large" onAction="ThisDocument.MyButtonMacro" 
                 screentip="***The text you want to change*** (above the line)" 
                 supertip="***The text you want to change*** (below the line)" />
             </group>
           </tab>
        </tabs>
      </ribbon>
    </customUI>
    

    您可以更改双引号"..."中的任何文字。

  4. MSDN文章的

    Part 2包含您可以设置的所有字段的参考。