To the real gugu’s out there a question about storing global values. Properties and Global variables, what is the advantage of using one over the other in AppleScript studio? Properties no longer have their redundant storage between launches, but is there a problem with using them, and when should you choose a global variable over a property when writing an application?
Hi Jerome,
actually it doesn’t matter.
Personally I use only properties in ASS, because I have a better overview of the variables
That is my take on it, but was not sure if there was extra over-head with the property or memory efficiencies gained with globals. The organization of declaring the properties at the top of the code seems like a good idea to me.