home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / comm / Internet / AMosaic / Rexx / PlayMod.rexx
OS/2 REXX Batch file  |  1995-09-26  |  427b  |  21 lines

  1. /* $VER: cab_PlayMod.rexx 1.0 (23.09.95)
  2.  *
  3.  * plays a MOD file using DeliTracker II
  4.  *
  5.  */
  6.  
  7. arg filename
  8.  
  9. /* run DeliTracker if not already active */
  10.  
  11. if ~show(p,'DELITRACKER') then do
  12.   address command 'Run <NIL: >NIL: :Pearls/mus/DeliTracker_II/DeliTracker2 PLAYSTART=NO'
  13.   'WaitForPort DELITRACKER'
  14. end
  15.  
  16. /* tell DeliTracker to play the MOD file */
  17.  
  18. if show(p,'DELITRACKER') then
  19.   address 'DELITRACKER' 'PLAYMOD' filename
  20.  
  21.