StatsTwo() Type: REGULAR FUNCTION Purpose: Calculate statistical information between two sets of data. Calculate statistical information between two sets of data. The data set can include all of the data… read more →
Stdout() Type: REGULAR FUNCTION Purpose: Stdout sends output to the STDOUT window. This is a useful function when debugging a new Explain™ script. Numerical values, text values, or any combination… read more →
StdoutActivate() Type: REGULAR FUNCTION Purpose: StdoutActivate brings the STDOUT window to the foreground when running an Explain™ script. This is a useful function if text descriptors or numerical values are… read more →
StrCmp() Type: REGULAR FUNCTION Purpose: Compares two strings character by character, and returns a value indicating their relationship. Usage: Result = StrCmp(String1, String2) String1 STRING First string for comparison… read more →
StrGet() Type: REGULAR FUNCTION Purpose: Returns the ASCII number of a character in a string. Position within string is zero-based. Usage: AsciiNumb= StrGet(String, Position) String STRING String containing character… read more →
STATIC.New() Type: CLASS FUNCTION Purpose: Create a Static object. Usage: Static = STATIC.New(“Text”) Text TEXT Any text. “Text” can be replaced with a string object. Static STATIC Related… read more →
Sleep() Type: REGULAR FUNCTION Purpose: Pauses the execution of this script until a specific time or until the user clicks the SKIP button. Times used in Sleep() are in system… read more →
Sqrt() Type: REGULAR FUNCTION Purpose: Take the square root of a number. Usage: Result = Sqrt(Number) Number REAL Number to be square-rooted. If Number < 0, absolute value is… read more →