home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 4: Phase Four / 17Bit_Phase_Four.iso / files / 3197b.dms / 3197b.adf / ArexxExamples.lha / EP_OpenPLWindow.dopus < prev    next >
Encoding:
Text File  |  1993-10-05  |  306 b   |  16 lines

  1. /* Eagleplayeransteuerung über Diropus
  2.    (c) 1993 DEFECT
  3.    öffnet Eagleplayer PlayerWindow
  4. */
  5. if (pos('rexx_EP',SHOW('Ports')) = 0) then 
  6.  do
  7.   address 'DOPUS.1'
  8.   toptext 'No Eagleplayer found'
  9.   exit
  10.  end
  11. address 'rexx_EP'
  12. openplwindow
  13. address 'DOPUS.1'
  14. toptext 'Eagleplayer: Playerwindow opened'
  15. exit
  16.