![]() |
#3
|
|||
|
|||
![]()
As above more info is needed.
If you simply typed text onto a Title / Text layout and then duplicated id changing the text each time you could probably have a macro fix your presentation Sub fixMe() Dim objCL As CustomLayout Dim L As Long On Error Resume Next ActivePresentation.Slides.Range.Delete For L = ActivePresentation.SlideMaster.CustomLayouts.Count To 1 Step -1 Set objCL = ActivePresentation.SlideMaster.CustomLayouts(L) If objCL.Shapes(1).HasTextFrame Then If Not objCL.Shapes(2).TextFrame2.TextRange Like "Click*" And objCL.Shapes(2).PlaceholderFormat.Type = 7 Then With ActivePresentation.Slides.AddSlide(1, objCL) .Shapes(1).TextFrame2.TextRange = objCL.Shapes(1).TextFrame2.TextRange .Shapes(2).TextFrame2.TextRange = objCL.Shapes(2).TextFrame2.TextRange End With End If End If Next L End Sub This will ONLY work if that's exactly what you DID! MAKE SURE YOU WORK ON A COPY!! How to use code |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Stereo | PowerPoint | 9 | 09-30-2013 10:06 AM |
Unwanted border created when entering print preview and printing slides | jcameron | PowerPoint | 2 | 10-02-2012 07:16 AM |
Which slides are using Which MAster Slide? | Aoresteen | PowerPoint | 0 | 07-03-2011 01:50 PM |
Having trouble with layout master slides | shs | PowerPoint | 0 | 04-21-2010 09:00 AM |
PowerPoint Master - 50 LINKED slides - SLOW Update | salfonsi | PowerPoint | 0 | 09-27-2008 02:55 PM |