SendChatMessage Method
The SendChatMessage method sends a message.
Syntax
SiteCafe.Server.Chat.SendChatMessage(sessionIndex, message)
|
Parameters
sessionIndex |
Long value that specifies the session index. |
message |
String that specifies the message to send. |
Return Value
Remarks
Examples
The following example sends a message to the user of the first session.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe.Server.Chat.SendChatMessage(1, "Message");
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top