Aeonitis
Aeonitis

Reputation: 5897

HTML5 Beginner. I want a Speech-Box to run Java program

I am a beginner at HTML stuff, I was looking at http://slides.html5rocks.com/#speech-input and was wondering how I could press enter on text input or speak and afterwards run a Java application HelloWorld with the input String from the text box.

I would like a simple rundown of what I need to do. If there is any advice on Text-To-Speech Output, that would be icing on the cake :)

Upvotes: 0

Views: 329

Answers (1)

htmldrum
htmldrum

Reputation: 2449

I'm sorry this question got thumbsed-down (it wasn't me) but maybe I can help you understand how you'll need to approach the problem (and if you're up for it!):

1) The new HTML5 speech input sends its string result as a form 2) You'd need to read this input, pass it along to middle-ware client-scripter (like jQuery - learn this), then use jQuery to instantiate your Java application in the client window

Again, sorry the community felt like this question wasn't worth answering...but it is a big one!

Upvotes: 2

Related Questions