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

Still keep getting nomatch events

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
jallard
Posts: 21
Joined: Mon Oct 03, 2011 7:20 am

Still keep getting nomatch events

Post by jallard »

A few weeks ago I posted a thread about nomatch events. Support suggested I set the property input mode to dtmf only. I did this. What I'm trying to do is collect a date. Sometimes it works fine. Other times I get a nomatch, or it will interrupt me as I'm entering in the date and give me a nomatch. I'm quite confused at what the problem could be. Is there another input mode I'm missing, such as speed of input or something like that?

Code: Select all

<form id="date">
		<field name="chkdate" type="date">
			<property name="timeout" value="10s"/>
			<property name="inputmodes" value="dtmf"/>
			<prompt>
				<voice name="mike">
					Please enter the date of the check. Please enter the date in this format: 4 digit year, 2 digit month, 2 digit day. For example, January 31st 2011 would be entered as two zero one one zero one three one.
				</voice>
			</prompt>
			<filled>
				<assign name="date" expr="chkdate"/>
			</filled>
                        <filled>
				<prompt>
					<voice name="mike">
						You entered <say-as type="acronym">
							<value expr="chkdate"/>
						</say-as>
					</voice>
				</prompt>
				<goto nextitem="chkdate2"/>
			</filled>
I do have the code closed correctly on my end, I just posted the relevant portion.

Post Reply