0
votes

I'm trying to add a button to Outlook's 'Respond' meeting request ribbon, but it's not showing.

enter image description here

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>
1
I don't have 2010 here but when I try your code in 2007 with this settings - How to: Show Add-in User Interface Errors it says - Failed to find Office control by ID ID: TabReadMessage - are you sure you use the correct name? Otherwise it seems you're doing it correctlyPetLahev
Actually thanks alot for the link to Interface Errors, I'm sure that'll point me in the right direction at least. I'll give it a try when I'm back at work.Daniel Minnaar

1 Answers

0
votes

It turns out that Outlook doesn't want me adding anything to their existing interface groups (in this case idMso="GroupRespond"). Oh well.

enter image description here