Keyboard command for Paste UNFORMATTED text?

T

Tony

Hi,

Is there a keyboard command for the following menu command of Word 2004?

Edit/Paste Special/Unformatted text

I cannot find it in the "Command Name.doc" table generated with Word 2004.

Thanks.
 
E

Elliott Roper

Tony said:
Hi,
Is there a keyboard command for the following menu command of Word 2004?
Edit/Paste Special/Unformatted text
I cannot find it in the "Command Name.doc" table generated with Word 2004.

I'm still on v.X, and I can't find it there either. It is simplicity
itself to record a macro and assign a keystroke to it.
I assigned this to ctrl-shift-v
Sub PasteUnformatted()
'
' PasteUnformatted Macro
' Macro recorded 13-08-2004 by Elliott Roper
'
Selection.PasteSpecial Link:=False, DataType:=wdPasteText,
Placement:= _
wdInLine, DisplayAsIcon:=False
End Sub

You could cut and paste it into your own macros if you wish, but it
easier to record your own when it is this simple.
 
T

Tony

Elliott,

Thanks!

---
I'm still on v.X, and I can't find it there either. It is simplicity
itself to record a macro and assign a keystroke to it.
I assigned this to ctrl-shift-v
Sub PasteUnformatted()
'
' PasteUnformatted Macro
' Macro recorded 13-08-2004 by Elliott Roper
'
Selection.PasteSpecial Link:=False, DataType:=wdPasteText,
Placement:= _
wdInLine, DisplayAsIcon:=False
End Sub

You could cut and paste it into your own macros if you wish, but it
easier to record your own when it is this simple.
 

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