Using MS Word with two languages simulatneously
Every week I take the text for my sermon and try to put it into MS Word so that I can play with it and add my own stuff around it. The problem is that MS Word always flags almost every word with a red squiggly line under it showing it is not spelled correctly. To work around this I have been adding all the Greek words to the English dictionary (which transliterates them-and it's messy). This gives my English dictionary a lot of unuseable words and caused a problem recently where my spell checker missed an easy word in english.
I wondering if anyone knows how I can configure MS Word or some other software to automatically select the spell checker that matches a words original language rather than always reading the english dictionary.
Using macros for BW Greek and Hebrew
One way to do this is to use a macro to configure a F-key to your BW Greek font, and one for your BW Hebrew font. Here's my procedure:
- I use F6 for Greek, F7 for Hebrew, and F8 for "Regular".
- F6 is set (a) to turn off smart quotes, so it doesn't interfer with typing Greek accents, (b) to turn off spell-checking for this, and (c) to turn on BW Greek font. This can be done under the tools menu when recording the macro. I do not select a type size or characteristic (e.g., regular, italics, bold, etc.), because I want my Greek or Hebrew to pick up the existing font characteristics of the text into which it's embedded.
- F7 does (a) and (b) above and turns on the BW Hebrew font.
- F8 reverses (a), (b), and (c). I under (c) by recording <shft><ctrl>z rather than using the font menu and picking the size and characteristics, because I want to return to my existing text's characteristics, whether in running text (12-point Roman), a block quote (11-point Roman), or a header (12-point Arial, bold and/or italics or not depending upon heading level).
- When I import Greek or Hebrew, I quickly select it and hit F6 or F7 as fitting; then if I'm not going to continue typing Greek or Hebrew, I hit F8 to get my spelling checking and smart quotes back, and continue.
- This leaves the Greek and Hebrew text identified as text that doesn't get checked for spelling and grammar.
Macros for BW language text
I don't need to spell check Greek and Hebrew--I usually paste in the text or lemma.
I recorded the macros and removed the extra statements and was left with the following. Only thing is the Microsoft 'protect me from evil macros' is protecting me from me. I can't figure out this digital signature thing yet.
Sub Greek_BW_text()
'
' Greek_BW_text Macro
'
With Selection.Font
.Name = "Bwgrkl"
End With
With Options
.AutoFormatAsYouTypeReplaceQuotes = False
End With
With Options
.AutoFormatReplaceQuotes = False
End With
Selection.NoProofing = True
End Sub
Sub Hebrew_BW_text()
'
' Hebrew_BW_text Macro
'
With Selection.Font
.Name = "Bwhebb"
End With
With Options
.AutoFormatAsYouTypeReplaceQuotes = False
End With
With Options
.AutoFormatReplaceQuotes = False
End With
Selection.NoProofing = True
End Sub
Sub English_text()
'
' English_text Macro
'
Selection.Font.Reset
With Options
.AutoFormatAsYouTypeReplaceQuotes = True
End With
With Options
.AutoFormatReplaceQuotes = True
End With
Selection.LanguageID = wdEnglishUS
Selection.NoProofing = False
Application.CheckLanguage = True
End Sub
Ms Office 2007 Macros/Digital Signatures
I'm still confused by this MS Office 2007 Digital Signatures for Macros thing. I have created the previous macros, which reside in by Normal template. I have created a self signature. I have myself listed in the trusted publishers list.
I open my document in which I want to use these formating macros. I type and run a macro---up pops a warning that say I have to sign the document. After signing it, I can't edit it because it is locked by the signing.:confused:
All I want to do is run my own macro freely. Any suggestions?
Thanks.