home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Applications / Musique / Eagleplayer201.lha / Eagleplayer2.01 / Rexx / EP_CloseMainWindow.dopus < prev    next >
Text File  |  1998-01-09  |  613b  |  28 lines

  1. /* Eagleplayeransteuerung ⁿber Diropus
  2.    (c) 1993-97 DEFECT Softworks
  3.    closes Eagleplayer`s main window
  4.  
  5.    ------------------------------------------------------------------------
  6.    Call as:
  7.    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  8.    [ARexx]  Eagleplayer2:Rexx/EP_CloseMainWindow.dopus {p}
  9.  
  10.    Flags:   none required
  11. */
  12.  
  13. parse arg opusport
  14.  
  15. options results
  16. if (pos('rexx_EP',SHOW('Ports')) = 0) then 
  17.  do
  18.   address value opusport
  19.   toptext 'No Eagleplayer found'
  20.   exit
  21.  end
  22. address 'rexx_EP'
  23. CX_POPUP NO
  24. AHA=result
  25. address value opusport
  26. toptext 'Eagleplayer: '||AHA
  27. exit
  28.