Wait Music
Posted: Mon Jun 22, 2009 2:24 pm
I am required to play wait music whenever a user's input starts a long running process. Would I use an audio tag or where do I begin?
Welcome to the PlumVoice IVR Support Forum
https://support.plumvoice.com/
Code: Select all
<?xml version="1.0"?>
<vxml version="2.0">
<var name="myname" expr="'Jane Doe'"/>
<form>
<field name="drivelicense" type="digits">
<prompt>
<value expr="myname"/>,
Please say your driver's license number.
</prompt>
<filled>
You entered <value expr="drivelicense"/>.
<!-- Specifying the "method" attribute as "post" -->
<!-- otherwise it defaults to "get" which would put -->
<!-- variable values directly into the URL. -->
<submit next="http://nonexistent.domain.com/process.pl"
method="post" namelist="drivelicense myname" fetchaudio="http://www.server.com/audiomusicfile.wav"/>
</filled>
</field>
</form>
</vxml>