Feedback

  • Contents
 

IS_Action_PlaceChat

Definition

Initializes a chat between the current user and another user. To use this action, you must assign a callback function to IS_Action_PlaceChat.callback. This callback function is invoked as soon as the chat is initialized; it must contain all of the logic associated with the created chat interaction to ensure that execution does not proceed until the chat is fully initialized.

Attributes

recipient

The userid of the other user that you would like to start a chat with.

Example

intitializeChat(userId)
{ 
  IS_Action_PlaceChat.recipient = userId; 
  IS_Action_PlaceChat.click(); 
}