king hsu | we already have serval tclivr scripts running in the production. We tried to add another tcl ivr script into the system. w e run the same ios in the lab as well as production. software: Cisco IOS Software, 5350 Software (C5350-JK9S-M), Version 15.0(1)M7, RELEASE SOFTWARE (fc2) at the tcl program we define the fsm. here is our content for the fsm. init set fsm(any_state,ev_disconnected) "act_Abort,same_state" set fsm(CALL_INIT,ev_setup_indication) "act_Setup,PLACECALL" set fsm(PLACECALL,ev_setup_done) "act_CallSetupDone,CALLACTIVE" set fsm(CALLACTIVE,ev_disconnected) "act_Cleanup,CALLDISCONNECTED" set fsm(CALLDISCONNECTED,ev_disconnect_done) "act_Cleanup,same_state" fsm define fsm CALL_INIT after the following commad we get the error. - npectrtvbexgw02#tclsh displayName.tcl invalid command name "fsm" while executing "fsm define FSM CALL_INIT" (file "displayName.tcl" line 80) |