Dissapearing Autotext

  • Thread starter Thread starter Scott Graham
  • Start date Start date
S

Scott Graham

When i insert the autotext i want and save it in my
normal.dot, i go in the next day and it has dissapeared.

Also some of my auto texts when inserted into a document
come out in a different font and size to the rest of my
document.

Any suggestions would be appreciated!

Scott
 
Scott said:
When i insert the autotext i want and save it in my
normal.dot, i go in the next day and it has dissapeared.

Did you save normal.dot?
Also some of my auto texts when inserted into a document
come out in a different font and size to the rest of my
document.

Autotexts are saved with their formatting - in recent Word versions - if you
include the paragraph mark that terminates the paragraph. To insert without
fomatting you need a macro:

Sub PlainAutoText()
With Dialogs(wdDialogEditAutoText)
.Display
SelUser = .Insert
SelAT = .Name
End With
If SelUser = -1 Then
NormalTemplate.AutoTextEntries(SelAT).Insert _
Where:=Selection.Range, RichText:=False
End If
End Sub

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

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

Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 

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

Similar Threads


Back
Top