October 20, 200619 yr I am curious if you can send two values through the Exit Script/get (ScriptResults) combo. So that when I do the "get (ScriptResults)" command, they are still distinguishable on the other side...I am trying to avoid making global variables so that I can reuse scripts. Thanks for your help in advance!
October 20, 200619 yr You can send as many as you like. A simple way to send two values (if none of them contains a carriage return) is to make the result: ValueA & ¶ & ValueB Then you can parse individual values as: LeftValues ( Get (ScriptResult) ; 1 ) and: RightValues ( Get (ScriptResult) ; 1 ) See also here.
Create an account or sign in to comment