Created
May 21, 2016 09:47
-
-
Save Partysun/401efe4fa74b1261beeea4819634b99f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VoxEngine.addEventListener(CallEvents.Connected, handleCallConnected); | |
function handleCallConnected(e) { | |
// first call connected successfully, play message | |
Logger.write(call); | |
e.call.say("Hi, this call is test, please wait", Language.US_ENGLISH_FEMALE); | |
e.call.addEventListener(CallEvents.PlaybackFinished, function(e) { VoxEngine.terminate(); }); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment