shortcut or macro for "Paste Unformatted Text"

A

Alan

I would like to create either a keyboard shortcut or a macro for Paste>Paste
Special>Unformatted Text. The problem I have is that when I get to the
command, I cannot stop the macro recorder; hence, when I play the macro it
doesn't work.

I'd like to do the same thing for "add entry to autocorrect." In Word 2003 I
had keyboard shortcuts for both of these and they saved me lots of time.
 
G

Graham Mayor

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

ALT+T, A activates the autocorrect dialog.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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