Spell Check On Powerpoint For Mac

I received a PowerPoint presentation with dozens of slides, each of them with a number of text boxes. Although the presentation is written in English, the language for spell checking is set to Canadian French. I’m trying to change the language to English, but even if I select all the slides and select a new element on the Language dialog box, the language of the text boxes remain the same. So I have to go slide by slide selecting the text boxes and then changing the language individually. Is there a better way to do this? The version of PowerPoint I have installed is 2002 SP3. I know an answer has been accepted already (which I gave +1 to since it works and is well written), but to some people the idea of creating, saving, using a macro may be too scary (or they may have security settings in place that make this hard to achieve).

Windows xp emulator for mac free. Spell-checking your PowerPoint show. It’s the same spell-checker used by other Office applications like Word and they all share the same custom dictionary. Fortunately, the PowerPoint spell-checker works exactly the same way as those other programs so you won’t have to learn anything new. To spell-check your show, go to the first slide.

So an easier solution is to use normal built-in functionality to do this. The trick is to be able to select all the objects on all the slides at once, rather than the slides themselves, and this is easily achieved in the Outline view (sadly an underused feature, but great for reorganising a slide deck, promoting and demoting whole chunks, eg bullets > new slides or vice versa). I don't have PowerPoint 2002 ('XP') so I am not sure if you need to follow instructions for 2000 or for 2003 so I cover both here: • In PP 2000: Go to the outline view, which is the second icon from the left at the bottom left of the screen (looks like lines with indentations).

• In PP 2003 onwards: Go to the 'normal' view (three pane layout) and at the top of the slide navigator choose 'outline' rather than 'slides' In older versions, make sure you have the Outlining toolbar visible ( View > Toolbars > Outlining) and click the Expand all button (later versions let you get at this through right click). • Ctrl-A to select all. • Tools > Language > Choose your language to set. • (from Powerpoint 2013) REVIEW > Language > Set Proofing language Job done. Likewise while you have everything selected you can change other things like fonts, colours etc.

Although of course in many case this is better done by changing the slide master, a presentation that has had many editors may have lots of 'hard' formatting set which deviates from the underlying master and needs resetting to be consistent. You can also reset individual slides to the master style, but this may result in placeholders moving as well, which may be undesirable in some situations. Contains the answer that worked for me. The steps I followed were: • Create a new macro: 1.1. Go to Tools, Macro, Visual Basic Editor. Insert a new empty module by selecting Insert, Module.

• Paste this code on the right panel and save the macro: 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 = msoLanguageIDEnglishAUS End If Next k Next j End Sub msoLanguageIDEnglishAUS can be replaced by any desired language. The full list of languages. • Execute the macro (by pressing F5 within the editor, or by selecting Tools, Macro, Macros, ChangeSpellCheckingLanguage, and clicking Run).

After that all text elements within the presentation will have the new spelling language. Here are two options depending on your situation: Situation 1: The originating copy of Office was installed from a Canadian French language based install media.

You will be able to set the default language to English, but core functions will use the native language of the installation media. The only fix is to uninstall the Canadian French version, and install from an English-based install media or copy/paste the entire presentation to a new doc and re-format. Situation 2: Everything seems to be English, but in limited circumstances foreign languages appear. In this situation, here are repair instructions for Office 2002: • Click the Start menu • Point to Programs • Point to Microsoft Office Tools • Click Microsoft Office XP Language Settings. • Click the Enabled Languages tab. • Go to the Default version of Microsoft Office box • Select the language you want • Click OK. A message will appear telling you what changes will be made.

• Click Continue I hope this helps. Is simple and generally effective, but it will not affect Shapes in groups.