Feedback

  • Contents
 

CallObject.pause Method

Definition

This method pauses recording of the current call. This method performs a toggling action. To resume recording, call the method again. To stop recording, use CallObject.record.

Syntax

CallObject.pause();

Prototype

CallObject.pause();

Input Parameters

None.

Return Values

None.


Example

function Record() {
    var CallObject = scripter.callObject;
    CallObject.record();
    CallObject = null;
}
function Pause() {     var CallObject = scripter.callObject;     if (CallObject.isRecording || CallObject.isPaused) {         CallObject.pause();     }     CallObject = null; }