Feedback

  • Contents
 

CallObject.isMuted Property

Definition

This property indicates whether or not a call is muted.

Syntax

CallObject.isMuted

Usage

Read       Yes

Write       No

Value Assigned

None.

Value Returned

Boolean

If the call is currently muted, returns True.  Otherwise, returns False.


Example

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