Reputation: 61
How does one create a macro which selects all words of a line and change the language to Dutch?
Upvotes: 0
Views: 510
Reputation: 14809
StackOverflow isn't the best place to start looking for programming language tutorials. Google vba in PowerPoint for links to various "how-to" tutorials.
This will set the currently selected text to Dutch:
Activewindow.Selection.TextRange.LanguageID = msoLanguageIDDutch
Unfortunately, PPT doesn't support keyboard shortcuts to macros.
Upvotes: 1