Text drop shadow in Word 2003

G

Guest

I just switched to Word 2003 and cannot find the text drop shadow button to
put on my tool bar. Please help. Thanks
 
G

Guest

Go to Tools | Customize and highlight Format on the left and find Drop Cap on
the right and drag it to your toolbar. I hope this has been helpful to you.
 
J

Jay Freedman

I just switched to Word 2003 and cannot find the text drop shadow button to
put on my tool bar. Please help. Thanks

There is no built-in button for shadow, nor for the outline, emboss,
or engrave settings in the font dialog.

You can put a macro in normal.dot or another global template, and make
a button to run it. This macro will turn on the shadow for the
selected text if it is currently not shadowed, and will turn it off if
it's currently on.

Sub ToggleShadow()
With Selection.Font
.Shadow = Not .Shadow
End With
End Sub

See these articles for help if needed:
http://www.gmayor.com/installing_macro.htm
http://www.word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToToolbar.htm
 
G

Guest

Jay Freedman said:
There is no built-in button for shadow, nor for the outline, emboss,
or engrave settings in the font dialog.

You can put a macro in normal.dot or another global template, and make
a button to run it. This macro will turn on the shadow for the
selected text if it is currently not shadowed, and will turn it off if
it's currently on.

Sub ToggleShadow()
With Selection.Font
.Shadow = Not .Shadow
End With
End Sub

See these articles for help if needed:
http://www.gmayor.com/installing_macro.htm
http://www.word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToToolbar.htm

Many thanks, Jay. I'll use this opportunity to learn about macros.

Arthur Sytkowski
 

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