I am building a ribbon tab for Word 2010 from scratch using XML stored within a Word template's customUI14.xml file. I am creating buttons that when clicked insert the text for various symbols (the euro, section mark, etc.) The code for inserting the symbols works fine, but I cannot get the labels of the XML controls to display these symbols. For example, I tried this to display a euro symbol:
<group id="rxGroupSymbols" label="Symbols">
<button id="rxbtnEuro" label="€" size="normal" onAction="rxshared_click">
</button>
</group>
But when using ASCII symbol equivalents the "€"
does not generate the euro symbol, nor do other variations such as &#128;
.
How can I get the Ribbon XML to display these characters on Office ribbon controls? Thanks.