Feedback

  • Contents
 

ChatObject.sendChatMessage Method

Definition

Sends a chat message to the remote party on behalf of the current user.

Compatibility

This functionality is only available with scripts for Interaction Connect. It is not available in Scripter .Net client.

Syntax

ChatObject.sendChatMessage("Hello, World");

Input Parameters

form

The input parameter is a string containing the text of the chat message.

Example

function sendMessage(form)
{ chatObject.sendChatMessage(form.userMsg.value); }