home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Sound / Player / DC-EP20B.LZX / eagleplayer_beta / rexx / EP_Iconify.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1997-04-04  |  371 b   |  23 lines

  1. /* Eagleplayeransteuerung über Diropus
  2.    (c) 1993-96 DEFECT
  3.    Aktiviert den IconifyModus
  4. */
  5.  
  6. parse arg Zustand
  7.  
  8. if zustand="" then zustand=-1
  9.  
  10. options results
  11. if (pos('rexx_EP',SHOW('Ports')) = 0) then 
  12.  do
  13.   address 'DOPUS.1'
  14.   toptext 'No Eagleplayer found'
  15.   exit
  16.  end
  17. address 'rexx_EP'
  18. iconify zustand
  19. AHA=result
  20. address 'DOPUS.1'
  21. toptext 'Eagleplayer: '||AHA
  22. exit
  23.