How can I create a permanent custom watermark?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I use the watermark feature constantly and usually type the same thing. Is
there a way that AI can create a custom watermark so I can select it in the
dropdown menu when I need it?
 
I guess you could create a template which includes that watermark and use as
required......
 
I think I would be inclined to save the watermark as you want it to appear
as an autotext entry called e.g. watermark, then use the following macro
attached to a toolbar button to insert it in the page header:

Sub InsertMyWatermark()
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
NormalTemplate.AutoTextEntries("Watermark").Insert
Where:=Selection.Range
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
End Sub

http://www.gmayor.com/installing_macro.htm

If you only want it to appear on the current page, you don't need the macro,
insert the autotext entry on the page.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top