There is a macro for converting BWGrkl, BWHebb, BWLexs and BWSyms fonts in MSWord. You have to install the macro using the text found in the C:/Program Files/BibleWorks7/unimacro.txt file.
To make it work, first you have to change any place where bwcom.document is found to read bibleworks.automation.
You can then change the Unicode fonts that will be used in the conversion by changing the green text below into the appropriate font names:Sub ConvertAllBwGrk2Unicode()
ConvertBwGrk2Unicode "bwgrkl", "Arial Unicode MS", True
End Sub
Sub ConvertAllBwHeb2Unicode()
ConvertBwHeb2Unicode "bwhebb", "Ezra SIL", True
End Sub
Sub ConvertAllBwLex2Unicode()
ConvertBwLex2Unicode "bwlexs", "Arial Unicode MS", True
End Sub
Sub ConvertAllBwSym2Unicode()
ConvertBwSym2Unicode "bwsymbs", "Arial Unicode MS", True
End Sub
Sub ConvertNextBwGrk2Unicode()
ConvertBwGrk2Unicode "bwgrkl", "Arial Unicode MS", False
End Sub
Sub ConvertNextBwHeb2Unicode()
ConvertBwHeb2Unicode "bwhebb", "Ezra SIL", False
End Sub
Sub ConvertNextBwLex2Unicode()
ConvertBwLex2Unicode "bwlexs", "Arial Unicode MS", False
End Sub
Sub ConvertNextBwSym2Unicode()
ConvertBwSym2Unicode "bwsymbs", "Arial Unicode MS", False
End Sub
As of now, I don't see any documentation for these macros in the HelpFiles. I haven't used the macro too much, so if you see any bugs be sure to send them in to the support staff.