Can Microsoft word read my document back to me aloud?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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?

For versions up to Word 2003, see
http://www.gmayor.com/word_text_to_speech.htm.

I've read that Word 2007 doesn't do text-to-speech; that feature has
been handed over to the operating system group, so now it's part of
Vista. I don't have any personal knowledge of this or how to make it
work.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top