SourcePoint Intel Help

Table of Contents

advanced

Display or change the advanced mode setting.

Syntax

advanced [= true | false]

Where:

false

advanced mode disabled.

true

advanced mode enabled.

Discussion

The advanced control variable enables and disables advanced mode. ย When advanced mode is enabled all configuration settings in SourcePoint are available. ย When advanced mode is disabled only the most commonly used settings are displayed / enabled. ย This control variable has the same effect as changing the checkbox in Options | Preferences | General.

Example 1

To display the current advanced mode state:

Command input:

printf("Advanced mode is %s\n", advanced ? "on" : "off")

Result:

Advanced mode is on

Example 2

To change current advanced mode state:

Command input:

advanced = false