Home | History | Annotate | Download | only in docs

Lines Matching full:speaking

394 while speaking, and close it when done.</p>
403 <p>To stop speaking immediately, just call <code>stop()</code>. Call
404 <code>isSpeaking()</code> to find out if a TTS engine is currently speaking.</p>
532 <p>Check if the engine is currently speaking.</p>
633 <pre>function(<span>boolean speaking</span>) <span class="subdued">{...}</span>;</pre>
638 <var>speaking</var>
666 <dd>True if speaking, false otherwise.</dd>
879 <dd>If true, enqueues this utterance if TTS is already in progress. If false (the default), interrupts any current speech and flushes the speech queue before speaking this new utterance.</dd>
1151 <dd>Speaking speed between 0 and 1 inclusive, with 0 being slowest and 1 being fastest, with a default of 0.5.</dd>
1219 <dd>Speaking pitch between 0 and 1 inclusive, with 0 being lowest and 1 being highest, with a default of 0.5.</dd>
1287 <dd>Speaking volume between 0 and 1 inclusive, with 0 being lowest and 1 being highest, with a default of 1.0.</dd>
1375 <dd>This function is called when speaking is finished.</dd>
1961 <dd>Speaking speed between 0 and 1 inclusive, with 0 being slowest and 1 being fastest.</dd>
2029 <dd>Speaking pitch between 0 and 1 inclusive, with 0 being lowest and 1 being highest.</dd>
2097 <dd>Speaking volume between 0 and 1 inclusive, with 0 being lowest and 1 being highest.</dd>
2185 <dd>You must call this function when speaking is finished.</dd>
2238 <p>Fired when a call is made to tts.stop and this extension may be in the middle of speaking. If an extension receives a call to onStop and speech is already stopped, it should do nothing (not raise an error).</p>