How can you use Global Variables with Encrypted Scripts
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 scriptif (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 variabl...