home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
124.lha
/
VLT
/
Rexx
/
Filelist_To_Amiga.vlt
< prev
next >
Wrap
Text File
|
1986-11-20
|
1KB
|
61 lines
/* this is a test for a window which pulls stuff */
check = addlib('rexxsupport.library',0,-30)
check = addlib('rexxarplib.library',0,-30)
check = addlib('rexxmathlib.library',0,-30)
fillstring = ""
fillstring = fillstring||"1. Make sure your terminal is in\"
fillstring = fillstring||" FILELIST and your cursor is to\"
fillstring = fillstring||" the left of the file to be sent.\"
fillstring = fillstring||"2. Fill in the directory the file should\"
fillstring = fillstring||" be saved in. The default is shown\"
fillstring = fillstring||"3. To continue click on Get It\"
fillstring = fillstring||" To cancel click on Cancel"
y=request(326,120,fillstring ,"vd0:","Get It", "Cancel","VLT")
if y = "" then exit
directory = y
sendstring = "kermver4 send */ *R"
sendstring = '"'||sendstring||'"'
do
CD directory
SEND "*X7"
SEND sendstring
ADDRESS COMMAND 'c:wait 3'
KR
ADDRESS COMMAND 'c:wait 2'
SEND "*R"
ADDRESS COMMAND 'c:wait 2'
SEND "*R*R"
ADDRESS COMMAND 'c:wait 2'
SEND "*R"
SEND "*F"
SEND "*F"
end
exit 0
HALT:
exit 20
BREAK_C
exit 20