Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Computer talking to you

Status
Not open for further replies.

ALO73

Programmer
Jul 9, 2006
3
US
Hi,
Is there a software that would allow computer to say like:
If there is incoming email, it would say "You got maiL" or would say "Good morning".

Thanks.
 
Does your E-mail program have an audible sound when E-mails arrive? If so you could perhaps record a sound file and have it play that instead. O.K I know I'm a "cheapskate". All I've got is my wife who announces to the world that I have a new E-mail.

See if you actually have a speech engine installed.

To determine if speech recognition is installed on your computer, follow these steps:
Click Start, click Control Panel, and then double-click Speech.
Look for the Speech Recognition tab. If the Speech Recognition tab is available in Speech Properties, the speech recognition engine is installed. If it is not available, the engine is not installed.


306537 - HOW TO: Install and Configure Speech Recognition in Windows XP

 
you can try this one:

Dim oVo, greeting, greetname, greetsentence, zzz, aaa, bbb, ccc, ddd, xxx

Set oVo = Wscript.CreateObject("SAPI.SpVoice")


aaa=hour(time())
bbb=minute(time())
if aaa >= 12 then

greeting = "good afternoon"
if aaa > 12 then
aaa = aaa - 12
end if
else
greeting = "good morning"
end if

xxx=greeting & " John. the time is " & aaa & ":" & bbb

oVo.speak xxx
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top