home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Sound
/
Eagleplayer2
/
Rexx
/
EP_PrevPatt.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-01-09
|
386b
|
29 lines
/* EaglePlayer - play previous pattern 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 jmp
if result == "no" then
do
say "No Patternjump available!"
end
else
do
prevpatt
position=result
say position
end
end