We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

How can I disable the voice recognition on the input prompt?

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
jporrello
Posts: 2
Joined: Tue Jun 03, 2008 8:27 am

How can I disable the voice recognition on the input prompt?

Post by jporrello »

I need to disable the Voice recognition so it will only use dtmf input. How can I do that.

here is the code I am using:
<field name="option">
<grammar type="application/x-jsgf" mode="dtmf">
1|2
</grammar>
<prompt timeout="20s" bargein="true">
For xx Medical Center, press 1.
For xx Center East, press 2.
</prompt>
<filled>
<if cond="option == 1 || option == 2">
Please wait
<else/>
Sorry, Not a valid option.
<clear namelist="option"/>
<reprompt/>
</if>
</filled>
<noinput>
<exit/>
</noinput>
</field>


Thanks,

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR script to disable speech recognition to allow for dtmf

Post by support »

Hi,

You can use the IVR property, inputmodes, within your field of IVR code to accomplish this:

Code: Select all

<property name="inputmodes" value="dtmf"/>
This will disable speech recognition for your field and only allow dtmf input.

Regards,
Plum Support

Post Reply