Equivalent of global variable

I am not sure how to even phrase this question terminologically.

I have two class scripts, all is working well. The only problem is that global variables in each are completely separate and must be initialized by each script. I am looking for a way to have other scripts inherit/share global variables from the AppDelegate in a way similar to how it happens when an AppleScript loads another script.

Is that even possible?

No. You really have two alternatives: use defaults to pass stuff around, or declare variables in your app delegeate and access them via NSApp’s delegate()'s ….

Thanks. That’s what I figured but wanted to make sure there wasn’t some trick I of which I was unaware…