G
Greg Maxey
I added a custom button to the officeMenu that calls a macro stored in a
global template addin that fellow MVP Jay Freedman created. I specified
both a screen tip and supertip.
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<officeMenu >
<button id="Btn1" insertBeforeMso="FileSave"
imageMso="ControlsGalleryClassic"
label="Work Documents"
screentip="View Working Folder"
supertip="Open a Word Add-In to manage and organize working files."
onAction="Module1.WorkDocuments" />
</officeMenu>
</ribbon>
</customUI>
When I mouse over the control both tips display but so does what looks like
a menu line then the following text:
workdocuments.dotm
Press F1 for more help
workdocument.dotm is the name of the global template. Pressing F1opens a
help file on the subject of enabling and disabling Add-Ins.
Is there a way to prevent this addtional screen tip text from appearing?
The help it offers has nothing to do with the command button itself.
Thanks.
global template addin that fellow MVP Jay Freedman created. I specified
both a screen tip and supertip.
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<officeMenu >
<button id="Btn1" insertBeforeMso="FileSave"
imageMso="ControlsGalleryClassic"
label="Work Documents"
screentip="View Working Folder"
supertip="Open a Word Add-In to manage and organize working files."
onAction="Module1.WorkDocuments" />
</officeMenu>
</ribbon>
</customUI>
When I mouse over the control both tips display but so does what looks like
a menu line then the following text:
workdocuments.dotm
Press F1 for more help
workdocument.dotm is the name of the global template. Pressing F1opens a
help file on the subject of enabling and disabling Add-Ins.
Is there a way to prevent this addtional screen tip text from appearing?
The help it offers has nothing to do with the command button itself.
Thanks.