Dear All,<br>    <br>       I am in the process of doing IVR development on FreeSWITCH. I am having doubt in the play_and_get_digits application. I am  using Perl language for handling IVR.<br><br>     How can I play more than one sound file in play_get_digits application?<br>
     For an example,<br>   <br>$conn-&gt;execute(&quot;play_and_get_digit&quot;, 1 1 1000 # /usr/local/freeswitch/en/us/callie/sounds/ivr/please.wav , /usr/local/freeswitch/en/us/callie/sounds/ivr/press-1.wav  /usr/loca/freeswitch/en/us/callie/sounds/ivr/invalid.wav res \\d+);<br>
<br>Is the above statement is right?  Can I use more than one file in it?<br><br>OR <br><br>Can I use the play_get_digits as following?<br><br>$conn-&gt;execute(&quot;play_and_get_digit&quot;, 1 1 1000 #
/usr/local/freeswitch/en/us/callie/sounds/ivr/please.av  
/usr/loca/freeswitch/en/us/callie/sounds/ivr/invalid.wav res \\d+);<br><br>$conn-&gt;execute(&quot;play_and_get_digit&quot;, 1 1 1000 #
/usr/local/freeswitch/en/us/callie/sounds/ivr/press-1.wav 
/usr/loca/freeswitch/en/us/callie/sounds/ivr/invalid.wav res \\d+);<br><br>In the above statements how can I assure that the first  application or second application is executed? <br><br>When the digit is get while playing the first application the second application should not be played. How Can I do that?<br>
<br>Is this my understanding wrong?<br>Correct me If I am wrong?<br><br><br>Please help me?<br><br><br>