How do I reset or undo transparent color?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've made a background color in a picture file transparent, but later needed
to bring the background color back for the presentation. I know set
tranparent color can only do one color at a time, but picking another color
does not help the situation, I need to delete all transparency without having
to reset the whole picuture.
 
Yes, I know. I'm just wondering of a way to reset the transparency without
resetting the entire picture.
 
sorry I misunderstood.

You can use VBA to do this.

Something like

Sub trans()
ActivePresentation.Slides(1).Shapes(3).PictureFormat.TransparentBackground =
msoFalse
End Sub

You will need to change the slide number if its not slide one and maybe
experiment with the shapes number
 
Back
Top