Skip to content

Instantly share code, notes, and snippets.

@marks
Created August 31, 2010 15:41
Show Gist options
  • Save marks/559221 to your computer and use it in GitHub Desktop.
Save marks/559221 to your computer and use it in GitHub Desktop.
answer()
ask("What's your four digit pin?", [
choices: "[4 DIGITS]",
mode: "voice",
recognizer: "en-us", // will recognize 'one two three four'
onChoice: {event -> say("You said $event.value")}
])
answer()
ask("¿Cuál es su número de identificación?", [
voice: "carmen",
choices: "[4 DIGITS]",
mode: "voice",
recognizer: "es-mx", //will recognize 'uno dos tres quatro'
onChoice: {event -> say("Usted ha dicho $event.value",[voice: "carmen"])}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment