home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Sound
/
Eagleplayer2
/
Rexx
/
EP_Stop.dopus
< prev
next >
Wrap
Text File
|
1998-01-09
|
834b
|
45 lines
/* Eagleplayer control for DOPUS 4
(c) 1993-97 DEFECT Softworks
stops playing
------------------------------------------------------------------------
Call as:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[ARexx] Eagleplayer2:Rexx/EP_Stop.dopus {p}
Flags: none required
*/
parse arg opusport
if (pos('rexx_EP',SHOW('Ports')) = 0) then
do
address value opusport
toptext 'No Eagleplayer found'
exit
end
address 'rexx_EP'
options results
status G fil
if result == "no" then do
address value opusport
toptext "Eagleplayer: No Module loaded !"
end
else do
status g ply
aha =result
if aha == "no" then do
address value opusport
toptext "Eagleplayer: I don`t play!"
end
else
do
Stop
address value opusport
toptext "Eagleplayer: Playing now stopped!"
end
end