home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
17 Bit Software 4: Phase Four
/
17Bit_Phase_Four.iso
/
files
/
3197b.dms
/
3197b.adf
/
ArexxExamples.lha
/
EP_Stop.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-21
|
275 b
|
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 "Player don`t playing !"
end
else
Stop
say "Playing now stopped !"
end
end