home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Sound
/
Player
/
MSR-EP20.LHA
/
Eagleplayer2.00
/
Rexx
/
EP_PrevSong.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
|
1997-08-05
|
375 b
|
29 lines
/* EaglePlayer - play previous subsong in module */
address 'rexx_EP'
options results
status m pnr
nummer=result
if nummer == "RESULT" then
do
say "No Module loaded!"
exit 0
end
else
do
status p nummer sub
if result == "no" then
do
say "No SubSongs available!"
end
else
do
prevsong
song=result
say song
end
end