View Full Version : design change doesn't change all slides


ed
10-13-2006, 08:36 PM
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?

SuperPresentationMan
10-13-2006, 09:30 PM
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

"ed" <ed@discussions.microsoft.com> wrote in message
news:122FC665-262C-43F5-83A6-5F6242DA6065@microsoft.com...
> 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?

ed
10-13-2006, 09:50 PM
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. . . .

"SuperPresentationMan" wrote:

> 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
>
> "ed" <ed@discussions.microsoft.com> wrote in message
> news:122FC665-262C-43F5-83A6-5F6242DA6065@microsoft.com...
> > 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?
>
>
>

SuperPresentationMan
10-13-2006, 10:17 PM
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


"ed" <ed@discussions.microsoft.com> wrote in message
news:5B6D54E5-E4EE-4B0A-9B2A-0BFAC73019F9@microsoft.com...
> 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. . . .
>
> "SuperPresentationMan" wrote:
>
>> 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
>>
>> "ed" <ed@discussions.microsoft.com> wrote in message
>> news:122FC665-262C-43F5-83A6-5F6242DA6065@microsoft.com...
>> > 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?
>>
>>
>>

Steve Rindsberg
10-14-2006, 06:02 AM
In article <5B6D54E5-E4EE-4B0A-9B2A-0BFAC73019F9@microsoft.com>, Ed wrote:
> 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. . . .

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

>
> "SuperPresentationMan" wrote:
>
> > 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
> >
> > "ed" <ed@discussions.microsoft.com> wrote in message
> > news:122FC665-262C-43F5-83A6-5F6242DA6065@microsoft.com...
> > > 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?
> >
> >
> >
>

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

ed
10-16-2006, 02:51 PM
Thanks. It's worth a try.

"Steve Rindsberg" wrote:

> In article <5B6D54E5-E4EE-4B0A-9B2A-0BFAC73019F9@microsoft.com>, Ed wrote:
> > 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. . . .
>
> 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
>
> >
> > "SuperPresentationMan" wrote:
> >
> > > 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
> > >
> > > "ed" <ed@discussions.microsoft.com> wrote in message
> > > news:122FC665-262C-43F5-83A6-5F6242DA6065@microsoft.com...
> > > > 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?
> > >
> > >
> > >
> >
>
> -----------------------------------------
> Steve Rindsberg, PPT MVP
> PPT FAQ: www.pptfaq.com
> PPTools: www.pptools.com
> ================================================
>
>
>