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

  1. /* EaglePlayer - Iconify-Modus = AppItem */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6.  
  7. appitem
  8.  
  9.  
  10. if result == "no" then do
  11.     say "Can't use AppItem !"
  12. end
  13. else do
  14.     say "Now using AppItem !"
  15. end
  16.