如何编辑将光标移到图标上时出现的框。在Word或宏的菜单中。我已经尝试了Word提供的所有选项,甚至是Visual Basic脚本。我搜索但没有成功。提前谢谢。
答案 0 :(得分:0)
在Word 2007或Word 2010中,工具提示(工具栏图标上的弹出文本)在Office XML文件中指定。
在XML部分中,描述工具栏上可能需要的任何按钮或其他控件。文档here告诉您可以使用的XML。要更改工具提示,请设置screentip
和supertip
字段。示例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>
您可以更改双引号"..."
中的任何文字。
Part 2包含您可以设置的所有字段的参考。