When you say you setup IVR successfully does that mean you created a new &lt;menu&gt; like in conf/ivr_menus.xml? If so, then you can accept digits from the caller while he is in the IVR. To match exactly &quot;1000&quot; from the caller do this:<br>
&lt;entry action=&quot;menu-exec-app&quot; digits=&quot;/^(1000)$/&quot; param=&quot;transfer $1 XML features&quot;/&gt;<br><br>You could then have a less specific regex to handle all other input, even if it&#39;s more or less than four digits:<br>
&lt;entry action=&quot;menu-exec-app&quot; digits=&quot;/^(\d+)$/&quot; param=&quot;transfer $1 XML features&quot;/&gt;<br><br>You just need to decide what to do when the caller dials the digits: menu-exec-app or menu-sub or whatever.<br>
<br>-MC<br><br><div class="gmail_quote">On Sun, May 16, 2010 at 6:46 AM, budi wibowo <span dir="ltr">&lt;<a href="mailto:bwibowo@gmail.com">bwibowo@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
dear all <div>i setup ivr successfully following xml sample, i want to add functionality to give condition based on calling number,</div><div>generally i want this:</div><div>if calling_id =1000</div><div> then do someaction</div>

<div> else do some other action</div><div> </div><div><br></div><div>can i use xml for this or should use javascript ?</div><div><br></div><div>regards</div><div><br></div><font color="#888888"><div>budi</div><div><br></div>

</font><br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br>