当您将光标移到图标上时,我如何编辑出现的框。在 Word 或宏的菜单中。我已经尝试过 Word 提供的所有选项,甚至是 Visual Basic 脚本。我搜索但没有成功。提前致谢。
问问题
1147 次
1 回答
0
在 Word 2007 或 Word 2010 中,工具提示(工具栏图标上的弹出文本)在 Office XML 文件中指定。
- 将您的宏放在将成为插件的 .docx 或 .dotx 文件中。
- 使用此处描述的工具将XML 部分添加到该 .docx 或 .dotx 文档。
在 XML 部分,描述您可能想要在工具栏上的任何按钮或其他控件。此处的文档告诉您可以使用的 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>
并且您可以更改双引号中的任何文本
"..."
。
MSDN 文章的第 2 部分对您可以设置的所有字段提供了参考。
于 2013-10-25T13:47:38.370 回答