I'm trying to add a button to Outlook's 'Respond' meeting request ribbon, but it's not showing.
I've downloaded both the Office 2010 and 2013 MSOID identifiers files from Microsoft, but I still can't seem to get it working.
Here are some XML combinations I've tried:
<tabs>
<tab idMso="TabReadMessage">
<group idMso="GroupRespond">
<menu idMso="MenuAcceptInvitation">
<button id="MyButtonAttachments"
label="MyButtonAttachments"
imageMso="HappyFace"
onAction="OnMyButtonClick" />
</menu>
</group>
</tab>
</tabs>
I also tried adding another group which doesn't show either:
<contextualTabs>
<tabSet idMso="TabSetAppointment">
<tab idMso="TabAppointment">
<group label="MyGroup1" id="MyAttachmentGroup">
<button id="MyButtonAttachments1"
size="large"
label="MyButtonAttachments"
imageMso="HappyFace"
onAction="OnMyButtonClick" />
</group>
</tab>
</tabSet>
</contextualTabs>
Failed to find Office control by ID
ID: TabReadMessage
- are you sure you use the correct name? Otherwise it seems you're doing it correctly – PetLahev