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

  1. /* EaglePlayer - Pause Playing */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6. status G fil
  7.  
  8. if result == "no" then do
  9.     say "No Module loaded !"
  10. end
  11. else do
  12.     Pause
  13.     say "Pause playing !"
  14. end
  15.