----------------
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.
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
--
Hope this helps,
Doug Robbins - Word MVP
Please reply only to the newsgroups unless you wish to obtain my services on
a paid professional basis.
"VictoriaW" <Vict...@discussions.microsoft.com> wrote in message
news:C4375330-75F2-4589...@microsoft.com...
I think that you can have the functionality that you are requesting by
assigning the following two macros to shortcut keys, pressing the shortcut
key for the first macro (StartSelecting) when you start to type a word or
phrase that you want to playback later, and pressing the shortcut key for the
second macro (CopySelection) when you finish typing the word or phrase.
Sub StartSelecting()
With ActiveDocument
If .Bookmarks.Exists("StartOfSelection") = True Then
.Bookmarks("StartOfSelection").Delete
End If
.Bookmarks.Add name:="StartOfSelection", _
Range:=Selection.Range
End With
End Sub
Sub CopySelection()
Dim myRange As Range
Set myRange = ActiveDocument.Range
With ActiveDocument
If .Bookmarks.Exists("StartOfSelection") = True Then
WordBasic.EditOfficeClipboard
myRange.start = .Bookmarks("StartOfSelection").start
myRange.End = Selection.End
myRange.Copy
.Bookmarks("StartOfSelection").Delete
Else
MsgBox ("The start of the selection could not be found.")
End If
End With
Set myRange = Nothing
End Sub
Note that the second macro opens the Office Clipboard task pane. This is
done so that you can copy several different selections to the clipboard and
have them available for pasting later on. You can learn more about using the
Office Clipboard in Word from the page that I wrote at
http://makeofficework.com/copying_and_pasting.htm.
--
Hope this helps,
Pesach Shelnitz
My Web site: http://makeofficework.com