且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

TCL脚本拨打电话

更新时间:2022-10-15 14:53:19

dnis callInfo leg _incoming





}





proc act_CallSetupDone {} {

全球哔声



致电关闭

#}

}





proc act_Cleanup {} {



set evt_name [ infotag get evt_event]

致电关闭

}



init



#----------------------------------

#状态机

#----------------------------------



设置fsm(any_state,ev_disconnected)act_Cleanup same_state



设置fsm(CALL_INIT,ev_setup_indication)act_Authorized PLACECALL


设置fsm(CALLDISCONNECT,ev_disconnected)act_Cleanup same_state

设置fsm(CALLDISCONNECT,ev_media_done)act_Cleanup same_state

设置fsm(CALLDISCONNECT,ev_disconnect_done)act_Cleanup same_state

s et fsm(CALLDISCONNECT,ev_leg_timer)act_Cleanup same_state



fsm define fsm CALL_INIT



`

Hi,
I am new to TCL scripting, i need a script to make a call to (*4346). I dont know how to do this




this is the code i have now, pls help me to correct it.

proc init { } {

global param
puts "Started..."
set param(initialDigitTimeout) 10
set param(interruptPrompt) true
set param(abortKey) *
set param(terminationKey) #

}





proc act_Authorized { } {

global ani
global dnis
global beep
global ctr

set ctr 0
set beep 0




puts "Out going call..."

set dnis "*4346"
leg setup $dnis callInfo leg_incoming


}


proc act_CallSetupDone { } {
global beep

call close
#}
}


proc act_Cleanup { } {

set evt_name [infotag get evt_event]
call close
}

init

#----------------------------------
# State Machine
#----------------------------------

set fsm(any_state,ev_disconnected) "act_Cleanup same_state"

set fsm(CALL_INIT,ev_setup_indication) "act_Authorized PLACECALL"

set fsm(CALLDISCONNECT,ev_disconnected) "act_Cleanup same_state"
set fsm(CALLDISCONNECT,ev_media_done) "act_Cleanup same_state"
set fsm(CALLDISCONNECT,ev_disconnect_done) "act_Cleanup same_state"
set fsm(CALLDISCONNECT,ev_leg_timer) "act_Cleanup same_state"

fsm define fsm CALL_INIT

`

dnis callInfo leg_incoming


}


proc act_CallSetupDone { } {
global beep

call close
#}
}


proc act_Cleanup { } {

set evt_name [infotag get evt_event]
call close
}

init

#----------------------------------
# State Machine
#----------------------------------

set fsm(any_state,ev_disconnected) "act_Cleanup same_state"

set fsm(CALL_INIT,ev_setup_indication) "act_Authorized PLACECALL"

set fsm(CALLDISCONNECT,ev_disconnected) "act_Cleanup same_state"
set fsm(CALLDISCONNECT,ev_media_done) "act_Cleanup same_state"
set fsm(CALLDISCONNECT,ev_disconnect_done) "act_Cleanup same_state"
set fsm(CALLDISCONNECT,ev_leg_timer) "act_Cleanup same_state"

fsm define fsm CALL_INIT

`