Based on the other branch of this thread, the real objective is neither
kerning
nor letter spacing -- it is to insert real space characters in order to
make the
words unrecognizable to forum software. You could just as well use other
characters such as underscores instead of spaces. That is not formatting,
it's
text editing or modification.
As Terry suggested, if the words you want to modify are always the same
ones,
use AutoText or AutoCorrect. If you want to be able to change any selected
text,
use this macro, which you can assign to a shortcut or toolbar button:
Sub InsertSpaces()
Dim sIn As String, sOut As String
Dim i As Integer
sIn = Selection.Text
For i = 1 To Len(sIn)
sOut = sOut & Mid$(sIn, i, 1) & " "
Next
Selection.Text = sOut
End Sub
See
http://www.gmayor.com/installing_macro.htm,
http://www.word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToHotkey.htm,
and
http://www.word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToToolbar.htm if
needed.
You might also look into using ROT13, a common way of "hiding" text in
posts
(it's built into some posting software):
http://en.wikipedia.org/wiki/Rot13 and
http://www.google.com/search?q=rot13.
--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup
so all
may benefit.