I'm currently fooling around with speak.js: http://www.syntensity.com/static/espeak.html

Apparently the script only allows for one speak command to be executed, if I do like this:

speak("1");
speak("2");

... only "2" is read out.

Does anybody know how to troubleshoot a problem like this?

If you want to fiddle around: http://jsfiddle.net/timkl/YgWdh/

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

What's happening is that both are being executed but the first gets trampled by the second. Look at this revision of your fiddle: http://jsfiddle.net/YgWdh/4/.

It uses a setTimeout to make sure the second line waits a bit before executing. But I don't see any API docs so I don't know how to make the second call wait only long enough for the first to finish.

link|improve this answer
Incidentally it's freaky that you can compile from C to Javascript, I never knew that before. Good to know. – dnuttle Nov 19 '11 at 12:53
feedback

I think you'll have to do something like speak("1 2")

http://jsfiddle.net/K6GtQ/

link|improve this answer
feedback

I haven't had any experience with this library, but you might want to delay a time after speaking, because maybe if you let it speak another command right after it, it just overwrites the first speak.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.