home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 4: Phase Four / 17Bit_Phase_Four.iso / files / 3197b.dms / 3197b.adf / ArexxExamples.lha / EP_HelpMode-Toggle.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1993-10-21  |  213 b   |  16 lines

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