home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ACS 1997 #4
/
amigaacscoverdisc1997-041997.iso
/
w_acs_6'97
/
eagleplayer
/
installdata
/
arexxexamples.lha
/
EP_Voice4-Toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
197b
|
18 lines
/* EaglePlayer - toggles Voice4 */
address 'rexx_EP'
options results
status G vo4
if result == "no" then do
voice4 yes
say "Voice 4 now on"
end
else do
voice4 no
say "Voice 4 now off"
end