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 Announcement Set Announcement = new PersistentVariable Announcement.Name = "Welcome" Announcement.Scope = SCOPE_NAMESPACE Announcement.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