home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 28 / amigaformatcd28.iso / +system+ / tools / sound / eagleplayer2.00 / rexx / ep_addplayer.dopus < prev    next >
Text File  |  1998-02-26  |  565b  |  27 lines

  1. /* Eagleplayer control for DOPUS 4
  2.    (c) 1993-97 DEFECT Softworks
  3.    adds a replayer to the current list
  4.  
  5.    ------------------------------------------------------------------------
  6.    Call as:
  7.    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  8.    [ARexx]  Eagleplayer2:Rexx/EP_AddPlayer.dopus {p} --arg--
  9.  
  10.    where --arg-- is the name of the replayer to load
  11.  
  12.    Flags:   none required
  13.  
  14. */
  15.  
  16. parse arg opusport playername
  17.  
  18. address 'rexx_EP'
  19.  
  20. options results
  21.  
  22. addplayer playername
  23.  
  24. address value opusport
  25. toptext 'Eagleplayer: '||result
  26. end
  27.