The GW-Scripting list is a discussion list for information regarding the development and use of Window-Eyes scripts. Any subscriber of the GW-Scripting list has the ability to post on-topic messages.

From:

 BT

Subject:

 Speech Question

Date:

 Thu, Jul 15, 2010 6:24:35 pm
Hi Chip,
Maybe something like this:
Using milliseconds inside the ()

Public Sub Talk(txt)
tts4.Speak txt
waitFlag = tts4.Speaking
Do While waitFlag
WScript.Sleep 10
waitFlag = tts4.Speaking
Loop
End Sub