How do I change the language within in a presentation?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've got a presentation that has some text in another language, how do I
change it all back to English (UK) without selecting each text block one at a
time?

Thanks (in anticipation!)
 
Thanks Luc, but unfortunately it doesn't seem to work in the file I've been
sent (guess they haven't put everything in placeholders!)

Thanks for replying.
--
Regards,
Helen


Luc said:
Helen,
See if this helps:
http://support.microsoft.com/default.aspx?scid=kb;en-us;245468

If the text is solely in placeholders:
Open your presentation and choose the outline tab on the left of your
screen, this shows you all of the text you put in the slides. Now
select them all (CTRL+A). Choose Tools and Language, select English as the
language and hit OK.
 
This vba should reset text boxes

Sub lang()
Dim osld As Slide
Dim oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.Type = msoTextBox Then
If oshp.HasTextFrame Then
oshp.TextFrame.TextRange.LanguageID = msoLanguageIDEnglishUS
End If
End If
Next oshp
Next osld
End Sub
--

Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html


Helenh said:
Thanks Luc, but unfortunately it doesn't seem to work in the file I've been
sent (guess they haven't put everything in placeholders!)

Thanks for replying.
 
Hi Helen,
If you completely followed Luc instruction and nothing did change then you should re-install your PT and this time choose to include
all language modules.

Hope it'll works on you!
Rino


Thanks Luc, but unfortunately it doesn't seem to work in the file I've been
sent (guess they haven't put everything in placeholders!)

Thanks for replying.
--
Regards,
Helen


Luc said:
Helen,
See if this helps:
http://support.microsoft.com/default.aspx?scid=kb;en-us;245468

If the text is solely in placeholders:
Open your presentation and choose the outline tab on the left of your
screen, this shows you all of the text you put in the slides. Now
select them all (CTRL+A). Choose Tools and Language, select English as the
language and hit OK.
 
sorry John, you've lost me.. can you explain in a different way (or very
basic terms) what do I need to do?
 
Back
Top