hi
im trying to make this work.
I have this when setting up the view:
VoiceEngine voiceEngine = new VoiceEngine().setButtons(MICROPHONE, RECORD, PLAY, STOP, LANG, VOICE);
(by the way it the 2 dropdowns are empey first and I need to reload the page before it gives med language options - running windows 10 and firefox)
I have a grid and a context menu so when I click on a row and select the menu it does:
if (gridsms.isPresent()) {
voiceEngine.setSpeech(gridsms.get().getJournalentry());
voiceEngine.play(gridsms.get().getJournalentry());
System.err.println("læser: "+gridsms.get().getJournalentry());
}
It does print out the expected text but it does not play any sound or seams to done anything.