home *** CD-ROM | disk | FTP | other *** search
- /* An ARexx script to demonstrate how to use RemoteStringRequest
- to get a string of information from the remote user. */
- parse arg CommandPort ActiveString
-
- address (CommandPort)
- options results
-
- RemoteStringRequest '"'||"Remote Rexx Request"||'"' '"'||"Blade Runner"||'"' '"'||"What is your favorite movie??"||'"'
- WaitEvent MESSAGE stem answ.
- EasyRequest "Answer" '"'||"The Remote User's favorite movie is: "answ.message||'"' "Interesting"
-