May 28, 200916 yr If you set a variable within a script and then use perform script to call another script, does the variable carry it's value through the new script as well?
May 28, 200916 yr ... then use perform script to call another script, does the variable carry it's value through the new script Only within the same file. If the script calls a sub-script from another file, that second script will lose the global variable value (unless you pass it via script parameter). The global variable will again be available to the main script after the sub-script returns control to the main script.
Create an account or sign in to comment