Demo: Text to Speech
if (typeof(window) == "object" && window.speechSynthesis) {
var msg = new SpeechSynthesisUtterance();
msg.text = ggbApplet.getValueString("text") + "";
window.speechSynthesis.speak(msg);
}
if (typeof(window) == "object" && window.speechSynthesis) {
var msg = new SpeechSynthesisUtterance();
msg.text = ggbApplet.getValueString("text") + "";
window.speechSynthesis.speak(msg);
}