View Single Post
  #4   Report Post  
asytkows
 
Posts: n/a
Default



"Jay Freedman" wrote:

On Thu, 18 Aug 2005 13:05:03 -0700, "asytkows"
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/Custom...oToToolbar.htm

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org


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

Arthur Sytkowski