home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1997 #4 / amigaacscoverdisc1997-041997.iso / w_acs_6'97 / eagleplayer / installdata / arexxexamples.lha / EP_AutoDir-Toggle.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-20  |  208b  |  16 lines

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