home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
oct93
/
misc
/
dasmodplay.lha
/
DASModPlay
/
Goodies
/
FadeQUIT.drx
< prev
next >
Wrap
Text File
|
1993-08-19
|
708b
|
35 lines
/*
Arexx demoscript for DasModplayer by Erno Tuomainen
Fade Volume to 1 and Quit DASModplayer
*/
OPTIONS Results
if ~SHOW('L','rexxsupport.library') then DO
if addlib('rexxsupport.library', 0, -30, 0) then
nop
ELSE DO
say 'RexxSupport.library NOT Available, FIND IT!'
exit 10
END
END
result = SHOW('Ports', 'DASMP_Rexx')
if result=0 then DO
say 'DASModPlayer not running! No need for this Script!'
EXIT
END
ADDRESS 'DASMP_Rexx'
VOLUMELEVEL /* Get current volumelevel */
DO i= 1 to result /* Fade it into 0 */
VOLUMEDOWN 1
call delay(2)
END
STOP /* Stop Playing the Module */
QUIT /* Quit DASModPlayer */
EXIT