home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 26
/
amigaformatcd26.iso
/
+system+
/
tools
/
sound
/
eagleplayer2.00
/
rexx
/
ep_stop.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-02-26
|
299b
|
23 lines
/* EaglePlayer - Stop Playing */
address 'rexx_EP'
options results
status G fil
if result == "no" then do
say "No Module loaded !"
end
else do
status G ply
if result == "no" then do
say "Eagleplayer doesn`t play anyway at the moment!"
end
else
Stop
say "Playing now stopped !"
end
end