Custom button on the 'Send To' menu

K

Ken Slovak - [MVP - Outlook]

Sure. You do it with Ribbon XML. I've done it in addins for Word, Excel and
PPT. Just add the new control to that Ribbon group, which is FileSendMenu.
 
A

Articulate

Hello Ken,
Thanks for responding. I am trying the following and seem to be getting
nowhere. Maybe I am doing something wrong.

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" >
<ribbon>
<tabs>
<tab idMso= "OfficeMenu">
<group idMso="FileSendMenu" >
<button id="ButtonPublish" label="My Package" size="large"
onAction="PackageIt" image="pkg32" supertip="Create a package."/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>

Could you correct the xml? Thx
 
K

Ken Slovak - [MVP - Outlook]

The XML for the ribbon is case sensitive, you must follow the exact casing
used in the ribbon docs. You also don't use a <tabs> or a tag attribute or
some other things.

Try this to replace your initial lines:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"
<ribbon>
<officeMenu>
<menu idMso="FileSendMenu">

Then add your button.
 
A

Articulate

One last question. Now that I've added my button to the Send to menu. Is it
possible to have the little description text that appears below the other
button on this menu? I tried screentip and supertip but they don't do the
trick.
 
K

Ken Slovak - [MVP - Outlook]

Try the description or getDescription attributes for that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top