home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMIGA PD 1
/
AMIGA-PD-1.iso
/
Programme_zum_Heft
/
Anwendungen
/
Kurztests
/
DeliTracker
/
Files
/
arexx.lha
/
Arexx
/
dt_fadeout.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-04-15
|
217b
|
19 lines
/* DeliTracker - toggles fadeout */
address 'DELITRACKER'
options results
status G fad
if result == "no" then do
fadeout yes
say "Fadeout is now on..."
end
else do
fadeout no
say "Fadeout is now off..."
end