Re: Text drop shadow in Word 2003
- From: Jay Freedman <jay.freedman@xxxxxxxxxxx>
- Date: Thu, 18 Aug 2005 19:44:56 -0400
On Thu, 18 Aug 2005 13:05:03 -0700, "asytkows"
<asytkows@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote:
>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
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
.
- Follow-Ups:
- Re: Text drop shadow in Word 2003
- From: asytkows
- Re: Text drop shadow in Word 2003
- References:
- Text drop shadow in Word 2003
- From: asytkows
- Text drop shadow in Word 2003
- Prev by Date: Re: how do I delete the browsed pages in Word?
- Next by Date: How did the first page footer end up on the third page as well?
- Previous by thread: RE: Text drop shadow in Word 2003
- Next by thread: Re: Text drop shadow in Word 2003
- Index(es):