Hi,
I am trying to write an arexx script that uses Requeststring to get a string from a user, but I'm struggling to get it to work properly.
From what I've read, this should work:
/*Clone*/
OPTIONS RESULTS
address command 'c:requeststring title "Clone" body "Enter filename to clone to"'
newname = RESULT
But it doesn't, the value of newname is RESULT.
I have found a method using rxset that works but means I can't enter a DEFSTRING, and I guess I could write the output to a file and read it, but I'm intrigued as to why this doesn't work.