Add a sound when you press a number button while using sendDigits #793
Unanswered
kimhanmiru
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am implementing a keypad that can do DTMF, and I plan to use sendDigits.
In CCP, a sound is made when the keypad is pressed. What function should I use in stream.js to make a sound?
(ref)
Connection.prototype.sendDigits = function (digits, callbacks) {
var client = connect.core.getClient();
client.call(connect.ClientMethods.SEND_DIGITS, {
contactId: this.getContactId(),
connectionId: this.getConnectionId(),
digits: digits
}, callbacks);
};
Beta Was this translation helpful? Give feedback.
All reactions