Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SCript HelpPlease.

Status
Not open for further replies.

pdulfo

Technical User
Aug 21, 2003
467
US
When I try and validate the follwoing script I get the error

Line: 8 Position: 21 Code: 102 Error: Illegal statement is used in EVENT statement.

Can anybody point me in the right direction.

PD-S


/* -------------------------------------- */
/* Script to obtain Number */
/* */
/* Read back to CLID */
/* ---------------------------------------- */

EVENT HANDLER
EVENT CALL ABANDON: EXECUTE repclid
END HANDLER

ASSIGN CLID TO dn_holder_dn

OPEN VOICE SESSION
PLAY PROMPT
VOICE SEGMENT tech_welcome_vs
VOICE SEGMENT tech_welcome_2_vs
END VOICE SESSION

WAIT 60

DISCONNECT

/* ------------- */

SECTION repclid



OPEN VOICE SESSION
PLAY PROMPT NUMBERBYDIGIT dn_holder_cv
END VOICE SESSION

DISCONNECT




---------------------------------
PDulfo aka pdiddy
 
u can use only following statements with cal anandon event.

IF-THEN-END-IF
! IF-THEN-ELSE-END-IF
! QUIT
! WAIT
! LOG
! SEND INFO

U cant use execute section command.

Hope ite helps.

Regards
panky
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top