Skip to main content
5-Regular Member
June 29, 2020
Solved

Stop the Speech

  • June 29, 2020
  • 1 reply
  • 1675 views

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

Best answer by RolandRaytchev

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();
}

 

1 reply

21-Topaz I
June 29, 2020

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();
}

 

agangaiah5-Regular MemberAuthor
5-Regular Member
June 29, 2020

Yes worked. Thanks