Reset set transparent color?

S

simonc

Once you have set the transparent color in an imported image is there any way
you can reset this to no transparent color? (Needless to say this is no
longer accessible through Undo).

Grateful for advice.
 
S

Sandy Johnson

Hello simonc,

You could outline the image in the (former) background color and Send to
Back to recreate what you lost. Or -- do you have the original file somewhere
(in an old PPT, email)?

Sandy
 
J

John Wilson

If you are using 2007 you may be able to use the format painter to copy the
format from another picture with no transparent colour. I don't think this
works in earlier versions

In code you can select the pic and then try this code

Sub fix_pic()
With ActiveWindow.Selection.ShapeRange(1)
If .Type = msoPicture Then
..PictureFormat.TransparencyColor = False
End If
End With
End Sub

How to use vba
http://www.pptalchemy.co.uk/vba.html
--
john ATSIGN PPTAlchemy.co.uk

Free PPT Hints, Tips and Tutorials
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html
PPTLive Atlanta Oct 11-14 2009
 
E

Echo S

T

TAJ Simmons

Simonc

If you "reset" the graphic, then you can to the transparent color thing
again.

see
Picture Tools | Format | Adjust | Reset Picture


cheers
TAJ Simmons
PowerPoint Master

http://www.awesomebackgrounds.com
awesome - powerpoint templates,
powerpoint backgrounds, free samples, ppt tutorials...
 
S

simonc

Thanks. I'd never noticed the Reset picture icon before. It's a nuisance that
it resets any resizing/positioning as well, but you can at least open up the
format dialogue and take a note of all the current settings and re-apply them
after resetting.

Echo S said:
I'd reset the picture, but that will reset any other changes you've made --
brightness and contrast, etc. Reset Picture is on the Picutre Tools Format
tab over in the Adjust group on the left.

--
Echo [MS PPT MVP] http://www.echosvoice.com
What's new in PPT 2007? http://www.echosvoice.com/2007.htm
Fixing PowerPoint Annoyances http://tinyurl.com/36grcd
PowerPoint 2007 Complete Makeover Kit http://tinyurl.com/32a7nx

Don't Miss the PPTLive User Conference! Atlanta | Oct 11-14


simonc said:
Once you have set the transparent color in an imported image is there any
way
you can reset this to no transparent color? (Needless to say this is no
longer accessible through Undo).

Grateful for advice.
 
K

Kurt Neubek

Thanks for this code. Here is a simple alternative:

Select the picture in PowerPoint.
In Visual Basic in the Immediate pane, enter:

Activewindow.Selection.ShapeRange(1).PictureFormat.TransparencyColor=False

(That should be one line, no spaces)

Hit enter and voila!
Once you have set the transparent color in an imported image is there any way
you can reset this to no transparent color? (Needless to say this is no
longer accessible through Undo).

Grateful for advice.
On Monday, October 05, 2009 9:56 AM Sandy Johnson wrote:
Hello simonc,

You could outline the image in the (former) background color and Send to
Back to recreate what you lost. Or -- do you have the original file somewhere
(in an old PPT, email)?

Sandy

"simonc" wrote:
On Monday, October 05, 2009 11:10 AM Echo S wrote:
I'd reset the picture, but that will reset any other changes you have made --
brightness and contrast, etc. Reset Picture is on the Picutre Tools Format
tab over in the Adjust group on the left.

--
Echo [MS PPT MVP] http://www.echosvoice.com
What's new in PPT 2007? http://www.echosvoice.com/2007.htm
Fixing PowerPoint Annoyances http://tinyurl.com/36grcd
PowerPoint 2007 Complete Makeover Kit http://tinyurl.com/32a7nx

Don't Miss the PPTLive User Conference! Atlanta | Oct 11-14
 

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