Using an encrypted script in Jmp13, I would like to read up a pre-assigned global variable.
Example:
With a standard script assign...
a=0;
b=10;
Using an Encrypted script
if (IsEmpty(a)==1,a=5); // DO NOTHING IF ITS NOT EMPTY
if (IsEmpty(b)==1,b=50); // DO NOTHING IF ITS NOT EMPTY
Write(a);
Write(b);
Goal: If the global variable is undefined, assign it in the encrypted script. If the global variable is defined, use the defination.
It works without encryption. Also, after executing the encrypted script, I can see the assigned defaulted globals.
So, is it possible to use a global variable with an encrypted script?
Thanks for the help.