Date: prev next · Thread: first prev next last
2012 Archives by date, by thread · List index


I went to the bug report for 
https://bugs.freedesktop.org/show_bug.cgi?id=46071 bug 46071 , and indeed
that was my problem.

The  https://bugs.freedesktop.org/show_bug.cgi?id=46071#c3 third comment by
Andy  gave a macro that fixes this issue. In LibreOffice Writer, I clicked
on Tools -> Macros -> Organise Macros -> LibreOffice Basic... In the
LibreOffice Basic Macros window, I added a New macro, then replaced the
default code that appears with the following:

Sub RemoveMathEquationWindowSettings
      p = CreateUnoStruct("com.sun.star.beans.PropertyValue")
      p.Name = "nodepath"
      p.Value = "/org.openoffice.Office.Views/Windows"
      cp =
CreateUnoService("com.sun.star.configuration.ConfigurationProvider")
      ca = cp.createInstanceWithArguments(_
        "com.sun.star.configuration.ConfigurationUpdateAccess", Array(p))
      name = "30378"
      If ca.hasByName(name) Then
        ca.removeByName(name)
        ca.commitChanges()
      End If
End Sub

Then I clicked on the button labeled "Runs the first macro of the current
module" to run the code, and the problem was fixed. Now I can see the
Commands window, and was able to enter the example matrix suggested by
Pedro.

Many thanks to Regina for pointing me to the bug report, Andy for posting
the macro, and Pedro for the example matrix! Hopefully this will be helpful
to others with this problem, and that the bug will be fixed soon.

--
View this message in context: 
http://nabble.documentfoundation.org/Can-t-find-Commands-window-in-LO-Math-tp3947640p3949524.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+help@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.