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

Male Voice on Error

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
nagy elshal
Posts: 1
Joined: Tue Aug 22, 2006 9:10 am

Male Voice on Error

Post by nagy elshal »

Hi I set all my script to female voice ,

but when error occurs I get Male voice "We didn't hear your response"

How I can stop this

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

IVR script to overrride nomatch and noinput

Post by support »

Hi,

What you are hearing is the default platform error message that happens when the caller doesn't enter anything (a 'noinput' event) or enters something unexpected (a 'nomatch' event).

You can override this by adding <nomatch> and <noinput> event handlers that use the preferred female voice to your IVR script (either in your root document, or within the <vxml> tag). For an IVR example (this is not debugged... caveat emptor):

Code: Select all

<vxml>

  <noinput>
    <prompt>
      <voice gender="female">I'm sorry. I didn't hear anything.</voice>
    </prompt>
  </noinput>

  <nomatch>
    <prompt>
      <voice gender="female">I'm sorry. I didn't understand what you entered.</voice>
    </prompt>
  </nomatch>

  <!-- the rest of your script code goes below  -->

</vxml>
Hope this helps.


Regards,
Plum Support

Post Reply