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

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