Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Hello,
I am using the below code to convert text to speech for my AR experience.
$scope.speak = function(){
var spokenText = $scope.view.wdg["label-1"].text;
var msg = new SpeechSynthesisUtterance(spokenText);
window.speechSynthesis.speak(msg);
}
Help I need: I need to be able to stop the speech in middle(in case the speech/text is too long) and move to the next step.
Any thoughts on how this can be achieved?
Avinash
Solved! Go to Solution.
Hi @agangaiah ,
as we discuss this outside the community , you informed me that you already found the solution. Only for the sake of the completeness I will post your solution here:
//=============
//Below method works..
//you can add a button say STOP....call this function stopallaudio()...code as below
//=============
$scope.stopallaudio = function(){
window.speechSynthesis.cancel();
}
Hi @agangaiah ,
as we discuss this outside the community , you informed me that you already found the solution. Only for the sake of the completeness I will post your solution here:
//=============
//Below method works..
//you can add a button say STOP....call this function stopallaudio()...code as below
//=============
$scope.stopallaudio = function(){
window.speechSynthesis.cancel();
}
Yes worked. Thanks