Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

The DebugLogString method outputs the user messages into the debug windows of the Editor-Debugger utility.

Method call syntax

function  DebugLogString(output : String)

Method arguments:

output - Required argument. The text message to be displayed in the debug window of the Editor-Debugger utility. It takes the following values:  Type – String.

Usage examples

Problem. Output to the debugger window all microphone events registered by the system.

if (Event.SourceType == "OLXA_LINE")
{
  var msgstr = Event.MsgToString();
  DebugLogString("Event from the microphone " + msgstr);
}
  • No labels