home *** CD-ROM | disk | FTP | other *** search
/ YPA: Your Privacy Assured / YPA.ISO / other_goodies / music / ep154b_1.dms / ep154b_1.adf / Rexx / EP_PubscreenARG.dopus < prev    next >
Text File  |  1995-01-17  |  343b  |  24 lines

  1. /* Eagleplayeransteuerung ⁿber Diropus
  2.    (c) 1993 DEFECT
  3.    schaltet auf anderen Pubscreen um
  4. */
  5. options results
  6.  
  7. parse arg aha
  8.  
  9. if (pos('rexx_EP',SHOW('Ports')) = 0) then 
  10.  do
  11.   address 'DOPUS.1'
  12.   toptext 'No Eagleplayer found !'
  13.   exit
  14.  end
  15.  
  16. address 'rexx_EP'
  17. pubscreen aha
  18. aha=result
  19.  
  20. address 'DOPUS.1'
  21. toptext 'Eagleplayer: '||aha
  22.  
  23. exit
  24.