cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X

Stop the Speech

agangaiah
14-Alexandrite

Stop the Speech

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

1 ACCEPTED SOLUTION

Accepted Solutions

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

 

View solution in original post

2 REPLIES 2

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

Top Tags