home *** CD-ROM | disk | FTP | other *** search
/ YPA: Your Privacy Assured / YPA.ISO / other_goodies / music / ep154b_1.dms / ep154b_1.adf / Rexx / EP_Voice4-Toggle.rexx < prev    next >
OS/2 REXX Batch file  |  1995-01-17  |  197b  |  18 lines

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