home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / disk / directory / browser2.41 / browserii / rexx / deliplay.rexx next >
OS/2 REXX Batch file  |  1995-02-27  |  416b  |  21 lines

  1. /* DeliTracker - Load & Play a module */
  2.  
  3. /* Arguments */
  4. parse arg filename
  5.  
  6. options results
  7. address command 'WaitForPort -i rexx_DT'
  8. if rc ~= 0 then
  9. do
  10.     /* Using WBRun, DeliTracker gets its home dir as current dir
  11.      * So it will find its player modules */
  12.     address command 'WBRun SYS:Utilities/DeliTracker'
  13.     if rc ~= 0 then
  14.         exit
  15.     address command 'WaitForPort rexx_DT'
  16. end
  17.  
  18. address 'rexx_DT'
  19. playmod filename
  20.  
  21.