View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Steve Yandl Steve Yandl is offline
external usenet poster
 
Posts: 26
Default Can Microsoft word read my document back to me aloud?

Here is a modification of something I've used in vbScript. This subroutine
should read whatever you have selected in the document to you.

Sub ReadToMe()
Set objRange = Selection.Range
strText = objRange.Text
Set objVoice = CreateObject("SAPI.SpVoice")
objVoice.Speak strText
End Sub

Steve Yandl



"JTyne" wrote in message
...
i thought that it used be an option for Word to read your article back to
you
in a synth voice. I cannot find this option anymore. Am I crazy, or did
they take away this option?