Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Text to Speech</title>
  4. <script>
  5. var droid = new Android();
  6. var speak = function() {
  7. droid.postEvent("say", document.getElementById("say").value);
  8. }
  9. </script>
  10. </head>
  11. <body>
  12. <form onsubmit="speak(); return false;">
  13. <label for="say">What would you like to say?</label>
  14. <input type="text" id="say" />
  15. <input type="submit" value="Speak" />
  16. </form>
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement