Re: NSSpeechSynthesizer/UKSpeechSynthesizer speechSynthesizer:didFinishSpeaking: called immediarely [Solved]

2008-03-13 Thread Ben Lachman
I found the problem. I was having the speech synth speak a tag line before the main string and was getting the didFinishSpeaking: call back when the tag was cut off by the main string starting to be spoken. Thanks for confirming that it was my own fault. :-) ->Ben -- Ben Lachman Acacia Tr

Re: NSSpeechSynthesizer/UKSpeechSynthesizer speechSynthesizer:didFinishSpeaking: called immediarely

2008-03-13 Thread Dave Verwer
I have been using this callback extensively recently in the way you describe and have not seen this issue either. On 3/13/08, Paul Bruneau <[EMAIL PROTECTED]> wrote: > On Mar 13, 2008, at 5:27 AM, Ben Lachman wrote: > > > According to the NSSpeechSynthesizer docs: > > > > speechSynthesizer:didF

Re: NSSpeechSynthesizer/UKSpeechSynthesizer speechSynthesizer:didFinishSpeaking: called immediarely

2008-03-13 Thread Paul Bruneau
On Mar 13, 2008, at 5:27 AM, Ben Lachman wrote: According to the NSSpeechSynthesizer docs: speechSynthesizer:didFinishSpeaking: is invoked when the speaking of the string ends. The second parameter of this method indicates whether the text was entirely spoken or was disrupted (as might ha

NSSpeechSynthesizer/UKSpeechSynthesizer speechSynthesizer:didFinishSpeaking: called immediarely

2008-03-13 Thread Ben Lachman
According to the NSSpeechSynthesizer docs: speechSynthesizer:didFinishSpeaking: is invoked when the speaking of the string ends. The second parameter of this method indicates whether the text was entirely spoken or was disrupted (as might happen if the user dismisses a spoken alert). This