GetState - All Scripts

Revision as of 17:53, 1 April 2022 by Cecell (talk | contribs) (added note about latency)

Member of: Any and all scripts.

Obtains the current state of the script, as a string.

Syntax

string Function GetState()

Parameters

None

Return Value

The script's current state, as it was last set by a GotoState call.

Examples

; Is this object currently in the "Running" state?
if (GetState() == "Running") ; case-sensitive!
  Debug.Trace("We are currently in the running state")
endIf

Notes

  • This is a latent function and is not executed asynchronously.

See Also