Thank you, it works, nice trick.
in Tools\Customize\Toolbars, I did not find a way to make a copy of an existing toolbar (to get all its components).
I guess you meant create an empty toolbar, and then add each items one-by-one to imitate the mail merge toolbar.
Here is what I did :
Tools\Customize\Toolbars, select “Mail Merge” Toolbar, add a command to it, close LibO.
This created the file “mailmerge.xml” in my LibO user profile :
C:\Users\RLG\AppData\Roaming\LibreOffice\4\user\config\soffice.cfg\modules\swriter\toolbar\mailmerge.xml
Then Open LibO, Tools\Customize\Toolbars, create new “Dummy” Toolbar, close LibO.
This created the file “custom_toolbar_34fb37a7.xml” in my LibO user profile :
C:\Users\RLG\AppData\Roaming\LibreOffice\4\user\config\soffice.cfg\modules\swriter\toolbar\custom_toolbar_34fb37a7.xml
Using notepad++, i copy/paste the code from mailmerge.xml into custom_toolbar_34fb37a7.xml and tada… working
My “Dummy” toolbar (aka mailmerge toolbar copy) is now always here !!
Thank you !!!
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE toolbar:toolbar PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "toolbar.dtd">
<toolbar:toolbar xmlns:toolbar="http://openoffice.org/2001/toolbar" xmlns:xlink="http://www.w3.org/1999/xlink" toolbar:uiname="Dummy">
<toolbar:toolbaritem xlink:href=".uno:MailMergeWizard"/>
<toolbar:toolbarseparator/>
<toolbar:toolbaritem xlink:href=".uno:MailMergeFirstEntry"/>
<toolbar:toolbaritem xlink:href=".uno:MailMergePrevEntry"/>
<toolbar:toolbaritem xlink:href=".uno:MailMergeCurrentEntry"/>
<toolbar:toolbaritem xlink:href=".uno:MailMergeNextEntry"/>
<toolbar:toolbaritem xlink:href=".uno:MailMergeLastEntry"/>
<toolbar:toolbaritem xlink:href=".uno:MailMergeExcludeEntry"/>
<toolbar:toolbarseparator/>
<toolbar:toolbaritem xlink:href=".uno:MailMergeCreateDocuments"/>
<toolbar:toolbaritem xlink:href=".uno:MailMergeSaveDocuments"/>
<toolbar:toolbaritem xlink:href=".uno:MailMergePrintDocuments"/>
<toolbar:toolbaritem xlink:href=".uno:MailMergeEmailDocuments"/>
</toolbar:toolbar>