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

Search found 62 matches

by soso
Sat Jun 06, 2009 1:30 pm
Forum: Plum iOn Q&A
Topic: How can I phone to my application?
Replies: 1
Views: 7190

How can I phone to my application?

Hi,

I use Kapanga to try to call my voicexml application.

How can I use this phone to dial the uk phone london?

Could you use sip format?

Thanks by advance.
by soso
Tue Jun 02, 2009 2:29 am
Forum: Plum DEV Q&A
Topic: foreach problem
Replies: 2
Views: 4728

Great !

Thanks.
by soso
Fri May 29, 2009 4:25 am
Forum: Plum DEV Q&A
Topic: Returns string composed by audio files
Replies: 1
Views: 3333

Returns string composed by audio files

Hi, I would like to create a function in javascript wich returns a message wich is composed of many audio files represents the digits number. Exemple, I've many audio files like "0.wav", "1.wav", "2.wav", ... If the user enter "123" on the phone number, like a "phone" field, the function returns "<a...
by soso
Tue May 26, 2009 10:12 am
Forum: Plum DEV Q&A
Topic: Type-ahead support with dtmf
Replies: 1
Views: 3587

Type-ahead support with dtmf

Hi, Is it possible to use type-ahead support with dtmf sequence? When I've this code: <field name="phone"> ... <filled> <submit name="check_phone" namelist="phone" /> </filled> </field> <form id="check_phone"> <block> <var name="rc" expr="<% CheckForm() %>" /> <if cond="rc==0"> ... </if> </block> </...
by soso
Tue May 19, 2009 5:26 am
Forum: Plum DEV Q&A
Topic: Interdigittimeout problem with key pound
Replies: 1
Views: 3351

Interdigittimeout problem with key pound

Hi, I've always a problem with the key pound. I've this code: <form id="main"> <field name="msg"> <property name="inputmodes" value="dtmf" /> <property name="termchar" value="" /> <property name="interdigittimeout" value="20s" /> <property name="termtimeout" value="0s" /> <prompt> <audio expr="media...
by soso
Mon May 18, 2009 10:28 am
Forum: Plum DEV Q&A
Topic: Grammar problem with "*#" or "#"
Replies: 7
Views: 7820

Hi,

I've another problem with this grammar.

May I use "termchar" with "#" or another ""?
by soso
Sun May 17, 2009 3:45 pm
Forum: Plum DEV Q&A
Topic: Anticipate keypad problem
Replies: 1
Views: 3454

Anticipate keypad problem

Hi,

I've a problem to use the "anticipate" function when I enter many fields with one time.

In fact, I've a nomatch event when I use a "block" instruction for example to call a subroutine (subdialog).

Can you tell me how may I use the anticipate function with no limit?

Thanks by advance.
by soso
Thu May 14, 2009 4:15 pm
Forum: Plum DEV Q&A
Topic: Grammar problem with "*#" or "#"
Replies: 7
Views: 7820

Hi,

Thanks. Is there the "* #" equal "*#"? May I write the space?
by soso
Thu May 14, 2009 11:50 am
Forum: Plum DEV Q&A
Topic: Grammar problem with "*#" or "#"
Replies: 7
Views: 7820

Sorry,

No. I want to when the user press "#" go to a next form. When it's press "*#", go to the previous form.
by soso
Thu May 14, 2009 11:20 am
Forum: Plum DEV Q&A
Topic: Grammar problem with "*#" or "#"
Replies: 7
Views: 7820

Grammar problem with "*#" or "#"

Hi,

How do I make a grammar with only "*#" or "#" for a field, and stop immediately after "#" or "*#"?

Thanks by advance.
by soso
Thu May 07, 2009 7:02 am
Forum: Plum DEV Q&A
Topic: Telephone number or # key doesn't works
Replies: 9
Views: 11280

Sorry, but I write this code: <field name="phone"> <link next="#null_phone"> <grammar root="ROOT" type="application/srgs+xml" mode="dtmf"> <rule id="ROOT" scope="public"> <one-of> <item repeat="0-255"> <ruleref uri="#digit"/> </item> <item> "#" </item> </one-of> </rule> <rule id="digit" scope="publi...
by soso
Wed May 06, 2009 8:50 am
Forum: Plum DEV Q&A
Topic: Telephone number or # key doesn't works
Replies: 9
Views: 11280

No,

I would like to use the pound key to execute another choice. The user can enter a telephone number or pound key. If the pound key is pressed, then a specific routin is execute.
by soso
Wed May 06, 2009 8:21 am
Forum: Plum DEV Q&A
Topic: Telephone number or # key doesn't works
Replies: 9
Views: 11280

Ok,

But the problem is where I want to recognize the null string. When I enter a pound key, the process waiting interdigittimeout seconds. How do I make the response immediatly?

Thanks.
by soso
Wed May 06, 2009 8:06 am
Forum: Plum DEV Q&A
Topic: Telephone number or # key doesn't works
Replies: 9
Views: 11280

Ok, I've another problem. When the user enter a number, the time is too short. How can I let a 20 secondes before timeout? And a delay between dtmf input?

Thanks by advance.
by soso
Wed May 06, 2009 5:07 am
Forum: Plum DEV Q&A
Topic: Telephone number or # key doesn't works
Replies: 9
Views: 11280

Telephone number or # key doesn't works

Hi, I've a problem on my vxml code. How do I authorize the user to enter a number and null string? For example, the user can be input the telephone number or only #, but actually, the # causes nomatch event. This my code: <property name="timeout" value="20s" /> <property name="interdigittimeout" val...