Dragon Medical2 & Libre

Greetings To The Libre Office World!

We have been successfully using Libre Office 4.1 with Dragon Medical2, running on Windows 7, 64 bit, since January of this year. Most everything works well with the integration between Libre Office Writer, and Dragon Medical2, even the field advance buttons on the Dictaphone Powermic2 units work well.

Our one area of concern is with our medical, Open Document Templates. As the user goes through the template field, using the next field key on the Powermic2, when they begin to dictate into some of these fields the text comes out in Bold Style, despite the fact that the field is indicated in the template as standard text. These ODT files work correctly in MS Office, and Nuance, the makers of Dragon state that only MS products are supported.

We are looking for a coding consultant who can assist us in correcting this issue.

Hi Brian,

Our one area of concern is with our medical, Open Document Templates.
As the user goes through the template field, using the next field key on
the Powermic2, when they begin to dictate into some of these fields the
text comes out in Bold Style, despite the fact that the field is
indicated in the template as standard text. These ODT files work
correctly in MS Office, and Nuance, the makers of Dragon state that only
MS products are supported.

This sounds like a bug in the default properties of the text frame when
it gets selected. You might want to search on LibreOffice's bugzilla
first to see whether someone has already flagged this.

Alex

An intermediate fix may be to use a /Macro/ with find-and-replace based on format type.

Example: http://www.tek-tips.com/viewthread.cfm?qid=1642378

OR

/Record Macro/ with find-and-replace based on format type.

Create test document.

This assumes that entry happens under certain formats and not others.

Think linear, what needs to be done first.

Build 1 macro at a time, by recording and testing.

Ref: http://www.linux.com/learn/tutorials/380813-introduction-to-openoffice-macros

See https://help.libreoffice.org/Writer/Shortcut_Keys_for_Writer for extensive list of things you can do by keyboard.

Once you have built individual macros that do everything you want correctly, merge the macros by editing them together in sequence.

Hint: remove /sub /and /sub end/ except for 1st and last one.
         rename first /sub/ entry to a new name.

Run "compile" from icon and eliminate errors until there are none.
         This is usually do to duplicates of functions and quickly lets you know where they are.

At this point you may wish to create a menu or function key to your macro.

Ref: https://help.libreoffice.org/Common/Scripting

Lots of examples on Google with images.

Hope this helps

Correction on Hint .... see below

Hint: remove /sub /and /sub end/ except for 1st and last one.

             Place /rem/ before each /sub /and /sub end/ except for 1st and last one.
This allows you to know where each original macro came from.

rename first /sub/ entry to a new name.

I have discovered the error of my ways.

To run multiple macros as a single process?|

I was cut-n-paste to put all macros together, but have just discovered this method.

Once you have got each individual macro to work correctly, run them as a group using this sub

sub MyMacroScheduler
     MyMacro1
     MyMacro2
     MyMacro3
     MyMacro4
end sub|

It works very well and doesn't cause duplication removal.