Haettenschweiler front problem?

G

Geoff Cox

Hello,

I have some text which has a shadow type effect. Looking at the font
type PowerPoint 2003 tells me that it is Arial Black Bold but I don't
think this can be true!

The font looks more like the Haettenschweiler font but I cannot seem
to get rid of the shadow effect.

It may be that in the past someone had used that font and I tried to
change to Arial Black Bold but it did not have any effect? Just a
vague memory.

Any ideas please?

Cheers

Geoff
 
E

Echo S

If you go to Format|Replace Font, is there a ? before Arial Black Bold? If
so, that font is not present on your machine, so PPT is replacing the font
with what it deems the closest match -- in this case, Haettenschweiler.

As for the shadow, there are two kinds of shadows. One is the regular font
shadow setting. The other is on the Drawing toolbar -- hover over the boxes
near the end and select the one for shadows. Then choose Shadow Settings and
you can turn off the shadow on the toolbar that pops up.
 
G

Geoff Cox

If you go to Format|Replace Font, is there a ? before Arial Black Bold? If
so, that font is not present on your machine, so PPT is replacing the font
with what it deems the closest match -- in this case, Haettenschweiler.

Echo,

No question mark.
As for the shadow, there are two kinds of shadows. One is the regular font
shadow setting. The other is on the Drawing toolbar -- hover over the boxes
near the end and select the one for shadows. Then choose Shadow Settings and
you can turn off the shadow on the toolbar that pops up.

That's what I needed to know! Back to normal Arial Black!

Many thanks,

Geoff
 
G

Geoff Cox

Well, glad it worked!

I also found following code written by Shyam - made life even easier!

Geoff

For Each oSld In oPresentation.Slides
For Each oShp In oSld.Shapes
If oShp.HasTextFrame Then
If oShp.TextFrame.HasText Then
oShp.TextFrame.TextRange.Font.Shadow = msoFalse
oShp.Shadow.Visible = msoFalse
End If
End If
Next oShp
Next oSld
 

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