How do I use # to terminate user input?
Posted: Thu Jul 22, 2004 8:56 am
Since the VoiceXML 2.0 specified global property "termchar" is unsupported, how do I get the # character to end user input? My current test case involves a field type of "digits":
Code: Select all
<form id="test">
<field name="testField" type="digits">
<prompt timeout="10s">
Enter a number, then press pound.
</prompt>
<noinput>
Too slow. Try again.
<reprompt/>
</noinput>
<nomatch>
Not a number. Try again.
<reprompt/>
</nomatch>
</field>
</form>