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

Audio and bargein

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

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

Re: Audio and bargein

Post by support »

The bargein property only applies to prompts, so you should wrap your audio in a prompt like this:

Code: Select all

<form id="PlayMusic1">
  <property name="bargein" value="true"/>
  <block>
    <prompt>
      <audio src="music.wav" />
    </prompt>

   <goto next="#StartCall"/>
  </block>
</form>

Post Reply