A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
Hi Andrew,
If your steps are correct, but underlines still appear, I suggest you try Steve's add-in or run the VBA code in the problematic file. The VBA code will bulk change the proofing language for all slides.
a. Go to the Developer tab (if you don’t see the tab, please go to File> Options> Customize Ribbon> tick Developer), Visual Basic, click Insert in the menu, Module, copy/paste the following VBA code
Option Explicit
Public Sub ChangeSpellCheckingLanguage()
Dim j As Integer, k As Integer, scount As Integer, fcount As Integer
scount = ActivePresentation.Slides.Count
For j = 1 To scount
fcount = ActivePresentation.Slides(j).Shapes.Count
For k = 1 To fcount
If ActivePresentation.Slides(j).Shapes(k).HasTextFrame Then
ActivePresentation.Slides(j).Shapes(k) _
.TextFrame.TextRange.LanguageID = msoLanguageIDEnglishUS
End If
Next k
Next j
End Sub
b. Run the macro and check again.
Close the Microsoft Visual Basic for Applications window. Click the Developer tab> Macros, you should see a macro "ChangeSpellCheckingLanguage". Please select it and click Run.
After that, please check if you see the underlines.
For your reference:
We look forward to your response. Thanks for your cooperation.
Sincerely,
George | Microsoft Community Moderator