home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Sound / Player / ep154.lha / Eagleplayer / InstallData / ArexxExamples.lha / EP_Voice2-Toggle.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1993-10-20  |  197 b   |  18 lines

  1. /* EaglePlayer - toggles Voice2 */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6.  
  7. status G vo2
  8.  
  9. if result == "no" then do
  10.     voice2 yes
  11.     say "Voice 2 now on"
  12. end
  13. else do
  14.     voice2 no
  15.     say "Voice 2 now off"
  16. end
  17.  
  18.