Tried this:
TextUtil has this global defined:
global cr
set cr to ASCII character 13
I import TextUtil into a separate script:
property TextUtil : script "TextUtil"
Then attempt to declare ‘cr’ as property:
property cr: my TextUtil's cr
And get the error:
Can't make cr into type reference
Is this possible to do, or even worth it? (code ‘my TextUtil’s cr’ seems cumbersome). Seems like it might be easier just to declare these globals in each script I need them.