I have been trying to use a universal variable across scripts and suites, but don’t get any value in the variable when I reference it even in another script in the same suite.
Do universal variables require the use of the keyword “universal” when they are used, or can I set the execution context to universal in my primary (main) script and then just use the universal variables I have declared there whenever/wherever I like?
A code snippet of this would be great. Currently, I’m doing this
main suite
main loop
universal uSomethingINeedEverywhere
repeat blah blah
SomeScriptElseWhere
....
end repeat
end main loop
SomeScriptElseWhere
put uSomethingINeedEverywhere
end SomeScriptElseWhere
But when I use the universal variable like that, nothing happens.
Thanks.
-dave