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