Macro to bold words

Hi, I am trying to make a macro which takes an input of some words in an input dialog box, finds all those words in the document and bolds them. I recently switched to Linux and this is crucial for some of the work that I do. I had a macro for Microsoft Word that did the same, but can’t seem to figure out how to do it in LibreOffice Writer.

My macro for Microsoft Word that I used on Windows;

    Attribute VB_Name = "Bold_All_Keywords"
Sub BoldAllKeywords()
    Dim xFind As String
    Dim xReplace As String
    Dim xFindArr, xReplaceArr
    Dim I As Long
    Application.ScreenUpdating = False
    xFind = InputBox("Enter items to be found here,seperated by comma: ", "Bold all Keywords")
    xReplace = InputBox("Enter new items here, seperated by comma: ", "Bold all Keywords")
    xFindArr = Split(xFind, ",")
    xReplaceArr = Split(xReplace, ",")
    If UBound(xFindArr) <> UBound(xReplaceArr) Then
        MsgBox "Find and replace characters must be equal.", vbInformation
        Exit Sub
    End If
    For I = 0 To UBound(xFindArr)
        Selection.HomeKey Unit:=wdStory
        With Selection.Find
            .ClearFormatting
            .Replacement.Font.Bold = True
            .Text = xFindArr(I)
            .Replacement.Text = xReplaceArr(I)
            .Format = True
            .MatchWholeWord = True
        End With
        Selection.Find.Execute Replace:=wdReplaceAll
    Next
    Application.ScreenUpdating = True
End Sub

Any help with a similar macro for LibreOffice would be great! TIA!

I have not written any macro yet so I can’t help you much. However I suggest an improvement.

Write has the notion of character styles, i.e. a named set of formatting attributes to be applied to a range of characters inside a paragraph. Create a character style named Keyword. In your macro, apply this Keyword character style instead of directly bolding the words.

If afterwards you consider your keywords should be red, monospaced font face and italic instead of bold, you only need to update your Keyword character style to change everything in the document without the need to hunt for the keywords or rerun your (modified) macro.

There is OpenOffice.org Macros Explained, which as a chapter “14.2.2. Character properties”. You’re looking for “CharWeight”. Or create a style, like ajlittoz suggested, and apply that.

Thank you all. I found a macro in the book jmux recommended, needs some modification, but I think I can change it to what I need.

As far as setting a character style is concerned, I don’t think it’ll work for what I am trying to achieve as the words to turn to bold are going to be changing frequently. Would be a pain to go through the settings every time and change the words.

Why would it be a pain? Once you’ve styled the words, they remain styled. If you need to change “Keyword-A” for “Schlüsselwort-A”, use Find & Replace, it won’t change the style, only the characters.

In a frequently changing document, styles are really your friends. Learn how to use them. You’ll wonder how you could work without them due to the comfort they bring.

As already mentioned usage of styles is recommendable.
However, without knowing how to explain it in short, I can imagine cases justifying a different approach.
Anyway I wrote a macro for the task as described. It is contained in the attached example document and can be tested there.
boldifyFoundTextPortions.odt

This works perfectly. Thank you so much!