-
3 pages in this category
-
5.1 - SCOPE_NAMESPACE
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 d - 193 views
-
5.2 - SCOPE_USER
VBScript This is a VBScript constant defined to the value of 2. This constant will be used to set the Scope of a persistent variable to the user scope. Variables the user scope are visible/accessible for all scripts of the current script user. This is the default scope of every new persistent variable if being used within a call routing script. If being used outside of a call routing script (new in v1.1.0) SCOPE_GLOBAL is the default scope. Dim MyVa - 70 views
-
5.3 - SCOPE_GLOBAL
VBScript This is a VBScript constant defined to the value of 3. This constant will be used to set the Scope of a persistent variable to the global scope. Variables in the global scope are visible/accessable for all scripts of all users. This is the default scope of every new persistent variable if being used outside a call routing script (new in v1.1.0). If being used inside of a call routing script SCOPE_USER is the default scope. Dim MyVariable Set M - 109 views
-