CompuServe Thread

#Help in REXX

4 messages in this thread
#45204From: George MorrisonJan 13, 1995 10:58 PM
All; I've been trying to learn how the AREXX scripts work on AutoPilot. I don't know much about AREXX so I entered one of the examples called billing. When I ran the script it started AP and then stopped. I brought the CLI screen forward and the following message was there: +++ Error 14 in Line 8:Requested Library not found Command Returned 10/14: " " " " Line 8—> LOGON I think I have all the files I'm supposed to have – rexxarplib, rexxsupport and rexxsyslib all in LIBS: George Morrison
#45211From: Steve AhlstromJan 14, 1995 3:48 PM
A good place to start would be the ARexx manual. You are probably missing the following couple of lines … if ~show('l', "rexxsupport.library") then addlib('rexxsupport.library',0,-30,0) -sja
#45217From: George MorrisonJan 14, 1995 8:37 PM
Steve; Thanks for the reply. I do have the 2 lines in my script. This is a list up to the point where it stops: if~show('l',"rexxsupport.library")then addlib('rexxsupport.library',0,-30,0) address command "run ap:autopilot" address command 'waitforport AP_REXX' address 'AP_REXX' call delay 40 LOGON portup = 'NO' I'm looking at my files and I think maybe I'm missing AP_REXX, I don't seem to see it anywhere. Did it come with AP? or is it something extra I need. All my rexx.. files are in Libs so I tried both 'l' and 'Libs' I'll try going back through the book and see if I can pickup on anything. Thanks; George
#45227From: Marlene Zenker/SYSOPJan 15, 1995 6:56 AM
AP_REXX is autopilot's AREXX port.