Feedback

  • Contents
 

IS_Event_QueueObjectAdded

Definition

This event is raised by Scripter when a queue object is added to the user's queue. Scripter will listen for calls and chats being added to the users' queue. If your application's interface displays a call queue, IS_Event_QueueObjectAdded provides notification that a call should be added to the list.

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 new object in the queue.

Syntax

function IS_Event_QueueObjectAdded(queueName, ObjectId)

function IS_Event_QueueObjectAdded()


Example

<head>
    <script language=javascript>
        function IS_Event_QueueObjectAdded(queueName, ObjectId) {

            // add an object to the queue display             // insert other code here as needed...
        }     </script> </head>