On Mon, 28 Jan 2002 18:58:37 -0500, "Robert Raisch" <[EMAIL PROTECTED]>
wrote:

It's been a long time ago, but when I played with Microsoft Speech SDK
4.0, I used the "Speech.VoiceText" ProgID:

use strict;
use Win32::OLE;
my $TTS = Win32::OLE->new('Speech.VoiceText');
$TTS->Register("", "perl");
$TTS->Speak(scalar(localtime), 0);
sleep(1) while $TTS->IsSpeaking;

-Jan

_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activeperl

Reply via email to