Feedback

  • Contents
 

CallObject.mute Method

Definition

This method mutes a call so the remote party cannot hear what the local (CIC) party is saying. This method works as a toggle to turn call muting on or off.  Call the method a second time to unmute the call.

Syntax

CallObject.mute();

Prototype

CallObject.mute()

Input Parameters

None.

Return Values

None.


Example

function Mute() {
    var CallObject = scripter.callObject;
    CallObject.mute();
    if (CallObject.isMuted) {
        alert("Call has been Muted");
    }
    CallObject = null;
}