Okay, that sure makes sense. But you were suggesting having different languages
within a single document in PPT?
Add a textbox in PPT, type a couple paragraphs, then use Tools, Language to set each
para to a different language then ...
Sub ThingCosaResWhatever()
Dim x As Long
' Each shape can have a TextFrame and
' Each TextFrame can have a TextRange and
' Each TextRange can be set to a different language
With ActiveWindow.Selection.ShapeRange(1)
Debug.Print .TextFrame.TextRange.LanguageID
' in this case, -2, meaning "crazy mixed up thang"
' and to make it more entertaining, each paragraph
' in a textrange can be set to a different language
With .TextFrame.TextRange
For x = 1 To .Paragraphs.Count
Debug.Print .Paragraphs(x).LanguageID
Next
End With
End With
End Sub