import guru.ttslib.*; TTS steve; //I just named the voice module 'steve' because it was a good idea at the time //You can name you voice module anything you want. void setup() { steve = new TTS(); } To make it speak at any time use: steve.speak("words and things"); This can be run at any time, during draw, mousePressed, keyPressed etc