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

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