Hi,
Can anyone advise whether having a COLLECT within another COLLECT workable or not? Example below..
OPEN VOICE SESSION
PLAY PROMPT VOICE SEGMENT <voice_segment>
COLLECT 1 DIGITS INTO first_digit_cv INTER DIGIT TIMER 2
/* checks the first digit, and collect again another
* 4 digits
*/
IF(first_digit_cv = 8) THEN
COLLECT 4 DIGITS INTO menu_choice_cv INTER DIGIT TIMER 2
END IF
END VOICE SESSION
Thanks
Can anyone advise whether having a COLLECT within another COLLECT workable or not? Example below..
OPEN VOICE SESSION
PLAY PROMPT VOICE SEGMENT <voice_segment>
COLLECT 1 DIGITS INTO first_digit_cv INTER DIGIT TIMER 2
/* checks the first digit, and collect again another
* 4 digits
*/
IF(first_digit_cv = 8) THEN
COLLECT 4 DIGITS INTO menu_choice_cv INTER DIGIT TIMER 2
END IF
END VOICE SESSION
Thanks