Feedback

  • Contents
 

IS_Event_QueueObjectChanged

Definition

This event provides notification that the state of a queue object or call object has changed in the user's queue. This event is raised by Scripter when the object that was added on the user's queue changes state. For example the call may go from a "Connected" state to a "Hold" state after issuing a IS_Action_Hold on the call.

Attributes

The QueueName and ObjectId parameters are optional. If you use them, you must specify both parameters.

QueueName

The name of the call queue.

ObjectId

The object id of the object being changed.

Syntax

function IS_Event_QueueObjectChanged(QueueName, ObjectId)

function IS_Event_QueueObjectChanged()


Example

<head>
    <script language=javascript>
        function IS_Event_QueueObjectChanged(QueueName, ObjectId) {

            // update the queue object displayed on the screen             // insert other code here as needed...
        }     </script> </head>