This is a classic case of dialplan parsing vs. executing. I&#39;ll let you read chapters 5 and 8 of the FreeSWITCH book to get a better understanding of the difference between those two. In the meantime I would like to suggest that you choose an alternate method of building your IVR. There are better tools available to you. Look at chapter 6 of the book to get an idea of how to use the XML IVR building system in FreeSWITCH. Look at chapter 7 to see how to do it in Lua.<div>
<br></div><div>That being said, you *can* do this in the dialplan, but it will be ugly. First off, I recommend that you put all your ivr &quot;menus&quot; into separate extensions instead of just separate conditions. Second, put all those extensions into their own dialplan context. Lastly, use the transfer app after you collect a digit with PAGD:</div>
<div><br><div><meta charset="utf-8">&lt;action application=&quot;play_and_get_digits&quot;<br>     data=&quot;0 1 1 5000 #<br>    $${base_dir}/sounds/callback/confirm-callback-press1.alaw<br>   $${base_dir}/sounds/callback/invalid.alaw  nr1 [1-2]&quot;/&gt;</div>
<div><font class="Apple-style-span" color="#3333ff">&lt;action application=&quot;transfer&quot; data=&quot;${nr1} XML your_new_context&quot;/&gt;</font></div><div><br></div><div>Since you&#39;re already using the XML IVR for &quot;callback only&quot; I think you should probably just use XML for the whole thing. That&#39;s my $0.02...</div>
<div><br></div><div>-MC<br><br><div class="gmail_quote">On Wed, May 11, 2011 at 2:31 PM, Thomas Hoellriegel <span dir="ltr">&lt;<a href="mailto:admin@blindi.net">admin@blindi.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
 Hi all,<br>
 i have create a menuselection via play_and_get_digits.<br>
 Problem, this application ignore the digits 1 and 2.<br>
 This is my dialplanextestnion:<br>
<br>
 &lt;extension name=&quot;callback_only_menuselection&quot;&gt;<br>
 &lt;condition field=&quot;destination_number&quot; expression=&quot;^callback_only_sel$&quot;/&gt;<br>
    &lt;condition field=&quot;${ivrlevel}&quot; expression=&quot;^$&quot; break=&quot;never&quot;&gt;<br>
      &lt;action application=&quot;play_and_get_digits&quot;<br>
      data=&quot;0 1 1 5000 #<br>
     $${base_dir}/sounds/callback/confirm-callback-press1.alaw<br>
    $${base_dir}/sounds/callback/invalid.alaw  nr1 [1-2]&quot;/&gt;<br>
<br>
    &lt;/condition&gt;<br>
    &lt;condition field=&quot;${ivrlevel}-${nr1}&quot; expression=&quot;^1$&quot; &gt;<br>
 &lt;action application=&quot;playback&quot;<br>
   data=&quot;$${base_dir}/sounds/callback/callback-send.alaw&quot;/&gt;<br>
 &lt;action application=&quot;system&quot; data=&quot;$${base_dir}/scripts/callback.sh&quot;/&gt;<br>
    &lt;/condition&gt;<br>
    &lt;condition field=&quot;${ivrlevel}-${nr1}&quot; expression=&quot;^2$&quot;&gt;<br>
 &lt;action application=&quot;ivr&quot; data=&quot;callback_only_ivr&quot;/&gt;<br>
    &lt;/condition&gt;<br>
  &lt;/extension&gt;<br>
<br>
 I press 1 and 2 play_and_get_digits don.t execute these actions.<br>
 What is wrong?<br>
 Thanks.<br>
<br>
---------------<br>
Du kannst mich jederzeit kostenlos per Festnetz erreichen unter:<br>
<a href="http://www.blindi.net/callback" target="_blank">http://www.blindi.net/callback</a><br>
homepage: <a href="http://www.blindi.net" target="_blank">http://www.blindi.net</a><br>
blinde-misc mailingliste für blinde. anmeldung unter:<br>
<a href="http://www.blindi.net/mailman/listinfo/blinde-misc" target="_blank">http://www.blindi.net/mailman/listinfo/blinde-misc</a><br>
<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></div></div>