Word 2003 に貼り付けると、デフォルトは になりますKeep Source Formatting
。デフォルトを に変更するにはどうすればいいでしょうかKeep Text Only
?
答え1
Word 2003 では、「テキストのみ保持」をデフォルトとして設定できないようです。
ただし、ここで詳しく説明されているようにマクロを作成することはできます。https://cybertext.wordpress.com/2009/07/02/word-keyboard-shortcut-to-paste-unformatted-text/
基本的には、1. マクロを作成します。2. テンプレートにマクロを追加します。3. マクロにキーボード ショートカットを割り当てます。
そうすれば、テキストのみを貼り付けたい場合は、キーボードショートカットを使用するだけです。
答え2
私も同じようなニーズがあったので、オートホットキーグローバルな「テキストのみ貼り付け」オプションを作成するスクリプト。完璧ではありませんが、かなり効果的です。Excel には特別なケースがあり、おそらく Word 用にも作成できます。
; Key: Win+V
; Cmd: Paste unformatted text
#v::
IfWinActive Microsoft Excel
{
Send !es{Down 2}{Enter} ;Edit menu, Paste Special, Text only
; This still works in 2007 and 2010 even though the Edit menu doesn't exist anymore
}
Else
{
clipOld := ClipboardAll ;Save the entire clipboard
clip := Clipboard ;Save just the text portion of the clipboard
Clipboard := clip ;Replace the clipboard with just the text portion
Send, ^v ;Paste the text
Clipboard := clipOld ;Replace the clipboard with its original contents
}
Return