How do I reset or undo transparent color?

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.
 
G

Guest

Yes, I know. I'm just wondering of a way to reset the transparency without
resetting the entire picture.
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top