T
Tyron
I am trying to select all shapes on a slide, cut then paste as enhanced
metafile, then move to the next slide in the presentation and do it
again, there is something wrong with my loop
Dim i As Integer
For i = 1 To 5
With ActivePresentation.Slides(i)
ActiveWindow.View.Slide().Shapes.Range().Select
ActiveWindow.View.Slide().Shapes.Range().Cut
'.Slides(2).Shapes.Paste
ActiveWindow.View.PasteSpecial DataType:=ppPasteEnhancedMetafile
End With
Next i
metafile, then move to the next slide in the presentation and do it
again, there is something wrong with my loop
Dim i As Integer
For i = 1 To 5
With ActivePresentation.Slides(i)
ActiveWindow.View.Slide().Shapes.Range().Select
ActiveWindow.View.Slide().Shapes.Range().Cut
'.Slides(2).Shapes.Paste
ActiveWindow.View.PasteSpecial DataType:=ppPasteEnhancedMetafile
End With
Next i