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

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