L
LostInOutlook
Hi I recieve a power Point file evey month. Every month each page has 2
slides on it One on top of the other. Also they are oversized. So I wrote
this marco which deletes one and reszie the one left. Great, now I want to
loop through the presentation and do iT on each page. Here is the code I am
using for one page at a time. How do i get to index to the next slide?
Also, if any one has ideas on why it is happening the first place I Listen.
Thanks in advance
'islide = 3
'Do While islide <= 134
' AcctiveWindow.View.GotoSlide = islide
ActiveWindow.Selection.SlideRange.Shapes("Picture 3").Select
ActiveWindow.Selection.ShapeRange.Delete
ActiveWindow.Selection.SlideRange.Shapes("Picture 2").Select
ActiveWindow.Selection.ShapeRange.ScaleWidth 0.91, msoFalse,
msoScaleFromTopLeft
ActiveWindow.Selection.ShapeRange.ScaleHeight 0.88, msoFalse,
msoScaleFromTopLeft
' islide = islide + 1
'Loop
End Sub
slides on it One on top of the other. Also they are oversized. So I wrote
this marco which deletes one and reszie the one left. Great, now I want to
loop through the presentation and do iT on each page. Here is the code I am
using for one page at a time. How do i get to index to the next slide?
Also, if any one has ideas on why it is happening the first place I Listen.
Thanks in advance
'islide = 3
'Do While islide <= 134
' AcctiveWindow.View.GotoSlide = islide
ActiveWindow.Selection.SlideRange.Shapes("Picture 3").Select
ActiveWindow.Selection.ShapeRange.Delete
ActiveWindow.Selection.SlideRange.Shapes("Picture 2").Select
ActiveWindow.Selection.ShapeRange.ScaleWidth 0.91, msoFalse,
msoScaleFromTopLeft
ActiveWindow.Selection.ShapeRange.ScaleHeight 0.88, msoFalse,
msoScaleFromTopLeft
' islide = islide + 1
'Loop
End Sub