I
Ikke123
Good afternoon,
When use the transparancy tool on a jpg picture to select the color white
( R(255) G(255) B(255) ), Word takes out a lot more colors then the wanted
color white. It makes a lot of gray colors transparant to. (In this case all
colors between R255 G255 B255 and R230 G230 B230. Is there a possibillity to
take out only the RGB 255 255 255 color? Do i need to edit the registry? Or
are theren settings I need to modify?
Does anyone know how to fix this problem?
The code I use:
Dim i As Long
Selection.WholeStory
For i = ActiveDocument.InlineShapes.Count To 1 Step -1
With ActiveDocument.InlineShapes(i)
.PictureFormat.TransparentBackground = msoTrue
.PictureFormat.TransparencyColor = RGB(255, 255, 255)
.Fill.Visible = msoFalse
End With
Next i
Thank you.
Emmy ter Steege
When use the transparancy tool on a jpg picture to select the color white
( R(255) G(255) B(255) ), Word takes out a lot more colors then the wanted
color white. It makes a lot of gray colors transparant to. (In this case all
colors between R255 G255 B255 and R230 G230 B230. Is there a possibillity to
take out only the RGB 255 255 255 color? Do i need to edit the registry? Or
are theren settings I need to modify?
Does anyone know how to fix this problem?
The code I use:
Dim i As Long
Selection.WholeStory
For i = ActiveDocument.InlineShapes.Count To 1 Step -1
With ActiveDocument.InlineShapes(i)
.PictureFormat.TransparentBackground = msoTrue
.PictureFormat.TransparencyColor = RGB(255, 255, 255)
.Fill.Visible = msoFalse
End With
Next i
Thank you.
Emmy ter Steege