cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2944
Views
0
Helpful
2
Replies

How to play different NI/NM audios for NI/NM events.

sreekanth47
Level 4
Level 4

Hi experts,

             Finally I'm able to handle NINM , but I had a doubt. If I put max NI/NM as 3, can I play 3 different audios for first NI/NM, second NI/NM and third NI/NM in vfc.

Suppose, I've 3 audio groups, first one is initial audio group, second and third for NI and NM. I can add an audio item for first NM, second NM and third NM like I can add for NI too. so what is my question is can I play these 3 audio groups for different NI,NM events.Is this possible in VFC.

1 Accepted Solution

Accepted Solutions

janinegraves
Spotlight
Spotlight

Yes, add the 'count' attribute to each NiNm event handler.

View solution in original post

2 Replies 2

janinegraves
Spotlight
Spotlight

Yes, add the 'count' attribute to each NiNm event handler.

Hi Janine, thank for the reply. I'm using the below handler,

suppose I'm setting maxNI/NM as 3

NoInputPrompt noinput = new NoInputPrompt(ved, NoInputAudioGroup,"max_noinput_count", this.getSubmitURL(),1);

this is working fine, but the thing is it always prompt first NI/NM audio for every NI/NM. If add the count to 3

NoInputPrompt noinput = new NoInputPrompt(ved, NoInputAudioGroup,"max_noinput_count", this.getSubmitURL(),3);

then, it was prompting 3 different audios but after 3 rd NI/NM it again prompting the initial audio , there also I put 3 NM/NI, then it is prompting intial audio , again I gave 3 NI/NM  after 3 rd NI/NM it goes to error state. The element has taken the maxError state after I gave 9 NI/NM. this is the problem I'm having