//NOMATCH Audio
NoMatchPrompt nomatch = new NoMatchPrompt(ved, nomatch_audio_group,"max_nomatch_count", getSubmitURL(), 1);
menufield.add(nomatch.getEvent());
//NOINPUT Audio
NoInputPrompt noinput = new NoInputPrompt(ved, noinput_audio_group,"max_noinput_count", getSubmitURL(), 1);
VEvent noinputEvent=noinput.getEvent();
noinputEvent.addProprietaryAttribute("return", "noinput");
menufield.add(noinputEvent);
//SUBMIT ACTION
VAction submitAction = VAction.getNew(pref, VAction.VARIABLE, "confidence", vFName+ "$.confidence", VAction.WITHOUT_QUOTES);
submitAction.add(getSubmitURL(), VXML_LOG_VARIABLE_NAME + " confidence");
// this action sets the menu field to undefined and throws a nomatch.
VAction throwNomatch = VAction.getNew(pref, VAction.ASSIGN, vFName, "noMatch", VAction.WITHOUT_QUOTES);
throwNomatch.add(VAction.THROW, VAction.NOMATCH);
// this action sets the menu field to undefined and throws a nomatch.
VAction throwNoinput = VAction.getNew(pref,VAction.ASSIGN, vFName, "noInput", VAction.WITHOUT_QUOTES);
throwNoinput.add(VAction.THROW, VAction.NOINPUT);
when I run this by debugger, I'm getting "undefined" for NINM. But I want separate value for NI and NM is this possible. thanks in advance..