On the ResponsiveVoice.JS website under the quirks section it states:
iOS TTS can’t be triggered without a direct user interaction, ResponsiveVoice JS resolves this
But, for the life of me, I can't get around this direct user interaction…
I try building a function that reads digits with defined delay between one another.
{
...
play : function (digits, delay = 500) {
if (digits && digits.length > 0) {
responsiveVoice.speak(digits[0], "Czech Female", {
rate: 0.7,
…
I am trying to pull a string from a looping PHP variable and load it as it updates into a div using jQuery.
The problem is, it just redirects me to the PHP page when the conditions are met instead of pulling info from it and putting that info in a…
I am using responsivevoice.js to play audio for a simulated tutorial. I am hiding and showing divs based on where the learner is within the process of four total steps.
The problem is the next step shows before the audio is finished playing. For…
im trying to make responsive voice read out each sentences and there must be a 1 minute gap between each readouts.
function read(){
responsiveVoice.speak('قلم','Arabic Female');
}
var a =…