-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't show on Powerpoint 2016 #5
Comments
Same here. It does not show up for me in Powerpoint 2016. Has it stopped functioning? |
Sorry. I unisnstalled and reinstalled and voila, it is there. Love the functionality. However, it does not seem to change the language inside tables... |
With my powerpoint it's not working, also not after re-installing. VBA Workaround: Option Explicit
Public Sub ChangeSpellCheckingLanguage()
Dim j As Integer, k As Integer, scount As Integer, fcount As Integer
Dim sld As Slide
Dim shp As Shape
Dim ntp As Shape
Dim san As SmartArtNode
Dim lang: lang = msoLanguageIDEnglishUS
For Each sld In ActivePresentation.Slides
For Each shp In sld.Shapes
' change lang in every shape (text boxes etc.)
If shp.HasTextFrame Then
shp.TextFrame2.TextRange.LanguageID = lang
End If
' change every smart art text box
If shp.Type = msoSmartArt Then
For Each san In shp.SmartArt.AllNodes
If san.TextFrame2.HasText Then
san.TextFrame2.TextRange.LanguageID = lang
End If
Next
End If
Next
' change lang in every notepad field
For Each ntp In sld.NotesPage.Shapes
If ntp.HasTextFrame Then
ntp.TextFrame2.TextRange.LanguageID = lang
End If
Next
Next
End Sub
|
Hi .. either I cannot find it or it doesn't show in PP2016 .. any idea what I can do about it?
I used this formerly and it is much appreciated!
The text was updated successfully, but these errors were encountered: