View Single Post
 
Old 02-18-2016, 12:17 PM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,914
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

If the colors did not change chances are they didn't follow the master correctly in the first place.

Some simple code might help

Make one shape how you want it and SELECT it.

Alt f11 to open the code editor
Insert >> Module

Copy and past in this code

Code:
Sub fixMe()

Dim oshp As Shape
Dim osld As Slide
ActiveWindow.Selection.ShapeRange(1).PickUp
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.Type = msoAutoShape Then oshp.Apply
Next oshp
Next osld
End Sub
Using a copy just in case it's not what you want f5 to run or View > Macros > Run
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote