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.

Re: shortcut or macro for "Paste Unformatted Text" by Graham

Graham
Thu Sep 06 01:09:52 CDT 2007

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

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

Alan wrote:
> 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.