
Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Gregory, Graham
It is not so much you don't, but you do in an entirely different way.
Graham's solution may very well be the easiet and suitable situation for
your current needs and he is correct in saying you don't use Word 2007 to
update previous version toolbars that display on the Word2007 Addin tab of
the ribbon.
You can add a customeXML file to the Word2007 editions of your documents
with customized toolbars and use the XML file to directly customize the
ribbon.
For example, I have a Word2007 edition of my ToggleObjects Addin that uses
the following customXML to customize the ribbon:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab id="CustomTab" label="Toggle Objects">
<group id="mygroup1" label="Check Boxes">
<button id="Button1" label="Checked Box" size="normal"
onAction="InsertCheckIt"/>
<button id="Button2" label="Cleared Check Box" size="normal"
onAction="InsertBlankBox1"/>
</group>
<group id="mygroup2" label="X Boxes">
<button id="Button3" label="X'd Box" size="normal" onAction="InsertXit"/>
<button id="Button4" label="Cleared X Box" size="normal"
onAction="InsertUnXit"/>
</group>
<group id="mygroup3" label="Radio Buttons">
<button id="Button5" label="Active Button" size="normal"
onAction="InsertStickit"/>
<button id="Button6" label="Inactive Button" size="normal"
onAction="InsertUnStickit"/>
</group>
<group id="mygroup4" label="Arrow Indicators">
<button id="Button7" label="Up Arrow" size="normal"
onAction="InsertUpCheck"/>
<button id="Button8" label="Down Arrow" size="normal"
onAction="InsertDownCheck"/>
</group>
<group id="mygroup5" label="Mood">
<button id="Button9" label="Happy" size="normal" onAction="InsertSmiley"/>
<button id="Button10" label="Sad" size="normal" onAction="InsertFrowny"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
You can download the template with the xml and corresponding template vba:
http://gregmaxey.mvps.org/Add_Toggle_Objects.htm
For more on customizing the ribbon see:
http://gregmaxey.mvps.org/Customize_Ribbon.htm

Signature
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.
> You don't in Word 2007 - but see
> http://www.gmayor.com/Toolbars_in_word_2007.htm
[quoted text clipped - 3 lines]
>> customize them. How do you add/edit commands located in the Add-In's
>> menu of the Ribbon?
Graham Mayor - 19 Sep 2007 12:20 GMT
True - and there is also the http://ribboncustomizer.com/ which might make
the job a tad simpler?

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Gregory, Graham
>
[quoted text clipped - 61 lines]
>>> customize them. How do you add/edit commands located in the
>>> Add-In's menu of the Ribbon?
Gregory La Due - 19 Sep 2007 15:03 GMT
Am I understanding this correctly, there is no way to add/modify what is
displayed in the add-in part of the ribbon without a third party control or
reverting the document back to a previous version of word.

Signature
Gregory M. La Due
Senior Programmer
Twin Tiers Technologies, Inc.
(800) 480-6467
> True - and there is also the http://ribboncustomizer.com/ which might make
> the job a tad simpler?
[quoted text clipped - 64 lines]
>>>> customize them. How do you add/edit commands located in the
>>>> Add-In's menu of the Ribbon?
Graham Mayor - 20 Sep 2007 05:38 GMT
You need either a third party tool to edit the ribbon, or you need to edit
the document in an earlier version of Word that can produce custom toolbars.
It is the custom toolbars that the Add-Ins tab displays..

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Am I understanding this correctly, there is no way to add/modify what
> is displayed in the add-in part of the ribbon without a third party
[quoted text clipped - 76 lines]
>>>>> customize them. How do you add/edit commands located in the
>>>>> Add-In's menu of the Ribbon?