SCRIPT GLOBAL ITEMS NAMESPACE?

In the Quantum Whale versions of these libraries, objects added to the ScriptRun global items ended up under the namespace "GlobalScriptSpace" and the class "ScriptGlobalClass." We want to use different names when referring to these objects in script, so we changed the string constants in ScripterConsts.cs and that worked.
However, looking at the same file in the AlterNET version, I don't see a namespace defined, just the class name. What is the namespace for global items in AlterNET, and how do we change it to our own string?
Hi Walter,
ScriptGlobalClass is not a member of any namespace in Alternet version.
These are constants that you need to modify if you need to change its name:

ScriptConsts.GlobalClassName
ScriptConsts.CSharpGlobalCode
You can also include GlobalNameSpace like this:
public const string GlobalClassName = "GlobalNameSpace.ScriptGlobalClass";
public static string CSharpGlobalCode = "namespace GlobalNameSpace { public static class ScriptGlobalClass\r\n" +
"{\r\n" +
" {0}\r\n" +
"}}";
Regards,
Andrew