home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Sound
/
Player
/
ep154.lha
/
Eagleplayer
/
InstallData
/
ArexxExamples.lha
/
EP_LoadSubDirs-Toggle.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
228 b
|
16 lines
/* EaglePlayer - toggles LoadSubDirs */
address 'rexx_EP'
options results
status G los
if result == "no" then do
LoadSubDirs yes
say "LoadSubDirs is now on !"
end
else do
LoadSubDirs no
say "LoadSubDirs is now off !"
end