Dear all,
How to configure input block in composer to support input *1?
Regards,
Lekie
Dear all,
How to configure input block in composer to support input *1?
Regards,
Lekie
What is “input * 1” ??? ???
If you mean that the customer should be able to enter *1 in the input block you will need to create a custom DTMF grammar.
Something like (off the top of my head, not tested):
<item repeat="0-2">
<one-of>
<item> 1 </item>
<item> 2 </item>
<item> 3 </item>
<item> 4 </item>
<item> 5 </item>
<item> 6 </item>
<item> 7 </item>
<item> 8 </item>
<item> 9 </item>
<item> 0 </item>
<item> * </item>
</one-of>
</item>
yes, thanks you ;D
I have to create new grxml to support enter * and How to use customize grammar in input block?
Regards,
Lekie