xxxxxxxxxx
61
var myVoice;
var phr=["Test1", "Test2", "Test3", "Test4"];
var input;
function setup()
{
createCanvas(400,400);
background(0);
myVoice = new p5.Speech(); // new P5.Speech object
myVoice.setVolume(20);
myVoice.setPitch(120/100);
myVoice.setRate(75/100);
input=createButton("Activate Sound");
input.touchStarted(actSound);
}
function draw()
{
// console.log("HERE");
// why draw when you can click?
}
function touchStarted()
{
if((mouseY<height) && (mouseX<width))
tt();
}
function tt()
{
myVoice.interrupt=false;
var say=[];
//myVoice.cancel();
//myVoice.speak("Test2");
say.push("test1");
myVoice.speak(say);
say.push("test2");
myVoice.speak(say);
myVoice.speak("Test4");
}
function actSound()
{
//userStartAudio();
myVoice.cancel();
myVoice.speak("Active");
input.hide();
}