home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 28
/
amigaformatcd28.iso
/
+system+
/
tools
/
sound
/
eagleplayer2.00
/
rexx
/
ep_prevsong.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-02-26
|
375b
|
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