Sub Test1() Dim s As Shape, eff As Effect, zip As EffectZipperDistortion For Each s In ActivePage.Shapes For Each eff In s.Effects If eff.Type = cdrExtrude Then With eff.Extrude.VanishingPoint .Type = cdrVPLockedToPage .PositionX = 0 .PositionY = 0 End With Exit For End If Next eff Next sEnd Sub