03-26-2014 12:51 PM
RunState.Sequence.Main["Message Popup"].Result.Response how to convert this output data to boolean.I nned to assign this variable data to Locals.Boolean.
03-26-2014 01:49 PM
Locals.Boolean = (RunState.Sequence.Main["Message Popup"].Result.Response == "MyExpectedTrueValue")
Replace MyExpectedTrueValue with the string you want the bool to be true for. You might want to transform the Result.Response value with some of the string functions if you need to ignore case, for example.