Action
Returns the name of the script that is running. The script name
accurately reflects any upper and lower case characters.
Syntax
sName = GetProgramName()
Variable
|
Description
|
sName
|
The name of the script. STRING.
|
Example
STRING sProgName; // The name of the current script
sProgName = GetProgramName()
Print(sProgName, "is currently running.")