cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
300
Views
0
Helpful
3
Replies

CUE Transfer to any extension help

aramos17428
Level 1
Level 1

I need to set up a CUE script in where the caller can dial by extension at any time during the opening greeting. I've tried to configured but it drops the call as soon as I dial the first digit of the extension i want to reach. Can some shed some light. I've been using the Cisco scripts as a guide.

I have included the script.

CUE ver 2.3.4

Thanks

Armando

3 Replies 3

gogasca
Level 10
Level 10

You will need to input the digits one by one and make the decision.

Play the Menu prompt.

then call Get Digit String

After that compare String with Menu Definitions:

Option1="1"

Option2="2"

Option3="3"

for example:

Multiple IFs

If (String == Option1) go to OPT1

If (String == Option2) go to OPT2

If (String == Option3) go to OPT3

Else

Use call redirect step and transfer the call to the selected extension.

Or Use Switch Function to avoid multiple IFs

HTH

Thanks,

Armando