paste special - unformatted text

G

Guest

Suggestion: allow users to make unformatted text default setting for paste
command. That is, why should users have to go to paste special or even make
macros to simply paste text?

Is the demand for unformatted text not very high? Seems like everyone I know
goes to paste special a lot only because they have to. Is it very difficult
and time consuming to move unformatted text format out of paste special and
into default paste command? Or maybe not rewarding enough?

Anyways, thanks for listening.

Tom

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...275f6e&dg=microsoft.public.word.docmanagement
 
G

Guest

Hi Tom,

You can change the behaviour with a macro:

Sub EditPaste()
On Error GoTo ErrHandler
Selection.PasteAndFormat (wdFormatPlainText)
Exit Sub
ErrHandler:
WordBasic.EditPaste
End Sub

Since it's called "EditPaste", it'll run instead of the built-in command.
Unfortunately, you'll loose the smart tag in Word2003 that allows you to
change the pasted text to "Keep original formatting" or "Use destination
formatting" after you pasted.

So I'd add to your suggestion that this issue gets fixed, and
Selection.PasteAndFormat shows the smart tag (... and WordBasic.EditPaste
does, too).

Until it's fixed, I would rename the above macro to "myEditPaste" and assign
a different keyboard shortcut to it. That way, you'll still be able to paste
as formatted text -- keeping the original formatting or using the destination
formatting -- if you want to.

Regards,
Klaus
 

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