Feedback

  • Contents
 

ChatObject.ObjectSpecificChangeHandler Callback Property

Definition

ChatObject.objectSpecificChangeHandler is invoked when something changes about this chat object that is not generic to all chat objects. You need to query the object itself to see what changed. If you pass the name of a user-defined function to ChatObject.objectSpecificChangeHandler, the function will be called when this event occurs.

Compatibility

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

Syntax

ChatObject.objectSpecificChangeHandler();

Usage

Read Yes

Write Yes

Value Assigned

Function Pointer

A function pointer is the address in memory where a user-defined function is loaded. Function pointers pass the address of a user-defined function to another function declared within an application. In a script, the function pointer is simply the name of the function. For example, if your code contains a function named "foo", the function pointer would also be named "foo". When defining your custom function, no special arguments are required. e.g.: function foo().