Tell me more ×
Ask Different is a question and answer site for power users of Apple hardware and software. It's 100% free, no registration required.

iWork provides the keyboard shortcut Cmd-Option-Shift-V to paste text without it's original formatting. How can I get this or a similar shortcut key for Microsoft Word 2008 for Mac?

share|improve this question

3 Answers

Answer to the same problem but for Microsoft Word 2011: how to assign pasting as unformatted text to Cmd+V.

share|improve this answer
up vote 0 down vote accepted

I found the answer in this blog post

Create the AppleScript:

try
  set theClip to Unicode text of (the clipboard as record)
  tell application "Microsoft Word" to tell selection to type text text theClip
end try

Save in /Users/YourUserName/Documents/Microsoft User Data/Word Script Menu Items as Paste unformatted\mosV.scpt (the backslashed bit at the end of the filename provides the shortcut). Restart Word and you can now paste without importing extraneous styles with Apple-Alt-Shift-V.

share|improve this answer

There's a "PasteDestinatationFormatting" command.

Go to Tools > Customize Keyboard, then select "All Commands" in the left pane.

In Word 2011, the default keys are command-option-shift-v.

share|improve this answer
Must be in a different version of word. I see PasteFormat & PasteFromScrapbook, but not PasteDestinationFormatting. I am using 12.2.8 (101117). – ericgorr Mar 9 '11 at 16:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.