design change doesn't change all slides

E

ed

I'm editing ppts made by someone else. The text all had shadows. I made a new
design template with no shadows on the masters. When I applied the new
design, some of the slides changed but others still have shadows. What can I
do besides change the rest manually?
 
S

SuperPresentationMan

Hi Ed
It is possible that some of the slides (the ones that haven't changed) have
not used the Master Slides during the layout process. This is an easy trap
to fall into (known as the "why should I do what PowerPoint suggests" trap)
where the placeholder for 'Title' has been deleted and a new text box
created where the title is now.

So, if this is the case, there is no easy way other than the manual way.
However you can use the Format Painter tool to copy the style of the
headings and paste it to the ones that are unchanged.

Have fun
-SuperPresentationMan

"Our PowerPoint Hero"
www.SuperPresentationMan.com
 
E

ed

Thanks. I figured that was the problem. I was hoping someone knew a magic
trick since I have over a thousand slides to fix. But it looks like I'll be
spending time with my old pal format painter. . . .
 
S

SuperPresentationMan

Hi Ed

There is another alternative: you can send your files to
SuperpresentationMan and, for a modest investment, your PowerPoint files
will be returned to you with all of the changes completed. And, because
SuperPresentationMan is based in New Zealand, the different timezone means
your project can be completed while you sleep.

If you would like to know more please visit the SuperPresentationMan website
or send an email using the Contact Page on the website.

Thank you
-SuperPresentationMan

"Our PowerPoint Hero"
www.SuperPresentationMan.com
 
E

ed

Thanks. It's worth a try.

Steve Rindsberg said:
If I understand you correctly, the problem is that some text has shadows, and you want to get
rid of ALL shadows on text.

It shouldn't be all that difficult to cobble up a little macro to do the job.
I think this should about do it. Give it a try on (please!) a COPY of your original file.

Sub DeShadowText
Dim oSh as Shape
Dim oSl as Slide

For Each oSl in ActivePresentation.Slides
For Each oSh in oSl.Shapes
.Shadow.Visible = False
If oSh.HasTextFrame then
If oSh.TextFrame.HasText Then
oSh.TextFrame.TextRange.Font.Shadow = False
End If
End If
Next
Next

End Sub


-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top