Set Word 2002 so that pasted text is always Times New Roam 12?

J

Jack Crane

I use Word 2002 mainly for collecting useful info from web pages. I'd use a
text editor such as Textpad, except that I want to also paste in URLs that
I want to be clickable.

Is there a way to set up a doc so that no matter what the font of the text
I'm copying and pasting into it, it will show up in the doc as black non-
bold, non-Italic, non-underlined, Times New Roman 12 (the default)?

Thanks,

Jack
 
G

Graham Mayor

Paste as unformatted text (which will cause the text to adopt the current
paragraph style) for which a macro is simplest method (otherwise edit >
paste special > unformatted text).


Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:= _
wdInLine
End
oops:
Beep
End Sub


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

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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