The following code sends the debugPrintln to the output window just fine in ver 10.6 but not in ver 11.3 so I assume that postMain() is not executed when exiting the script in ver 11.3.
Is this so, or am I missing something?
If not, is there a way to remove global variables from memory when exiting an efs script in ver 11.3?
I have only tried it with ver 11.3 so I don't know if previous versions have the same issue.
Wayne
Is this so, or am I missing something?
If not, is there a way to remove global variables from memory when exiting an efs script in ver 11.3?
PHP Code:
function postMain(){
debugPrintln ("removing " + globalValueName("QQECondition_"));
removeGlobalValue(globalValueName("QQECondition_"));
}
//globalValueName() just adds the symbol and getInvokerID() to the variable name.
Wayne
Comment