The learning Continues. Now the new issues are with UI's. I have 6 submenu items on the TopMenu added by the Extension. The commands execute as expected though the order of the URL is disorderly (not as scripted). There's gotta be a way to tell OOo/LibO how to arrange/order the URLs. Secondly, I added more lines to Addon.xcu hoping to achieve a toolbar. I see none!

Code: Select all
1 <node oor:name="OfficeToolBar">
2 <node oor:name="org.openoffice.twohot.addon" oor:op="replace">
3 <node oor:name="theExtension_bttnDoit">
4 <prop oor:name="URL" oor:type="xs:string">
5 <value>vnd.sun.star.script:theExtension.oxt|package|theMacros.py$Doit?language=Python&location=user:uno_packages</value>
6 </prop>
7 <prop oor:name="Title" oor:type="xs:string">
8 <value/>
9 <value xml:lang="en-US">Do Something</value>
10 </prop>
11 <prop oor:name="Target" oor:type="xs:string">
12 <value>_self</value>
13 </prop>
14 <prop oor:name="Context" oor:type="xs:string">
15 <value>com.sun.star.sheet.SpreadsheetDocument</value>
16 </prop>
17 </node>
18 </node>
19 </node>