View Single Post
 
Old 08-28-2018, 04:40 AM
staicumihai staicumihai is offline Windows 7 32bit Office 2010 32bit
Advanced Beginner
 
Join Date: Dec 2015
Posts: 33
staicumihai is on a distinguished road
Default

Thanks Kilroy, I modified the macro you gave me:


Code:
Option Explicit
Sub Brightness()
Dim objPic As InlineShape
Dim iShp As InlineShape
Dim ShpScale As Double
With Selection
For Each objPic In .InlineShapes
With objPic
If .Type = wdInlineShapePicture Or wdInlineShapeLinkedPicture Then
objPic.PictureFormat.Brightness = 0.25
objPic.PictureFormat.Contrast = 0.98
End If
End With
Next objPic
End With
End Sub
Reply With Quote