VBScript
This is a VBScript constant defined to the value of 1. This constant will be used to set the Scope of a persistent variable to the namespace scope.
Variables in the namespace scope are visible/accessible for all user's scripts defining the same Namespace name.
Dim MyVariable
Set MyVariable = new PersistentVariable
MyVariable.Name = "Welcome"
MyVariable.Scope = SCOPE_NAMESPACE
MyVariable.Namespace = "Support"
The above example defines a persistent variable Welcome in the namespace Support. All scripts defining the same namesapce will be able to access this variable.
Another persistent variable Welcome in a namespace Sales will not interfere.

By Tom Wellige