home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d945 / reminder.lha / Reminder / RemPlay.rexx < prev    next >
OS/2 REXX Batch file  |  1993-12-20  |  339b  |  14 lines

  1. /* Run Upd if necessary, play a given sample */
  2.  
  3. /* Use with Reminder by selecting ARexx script mode and entering
  4.    "RemPlay sampleid" in Comm/Script-gadget, where "sampleid" is an
  5.    id specidied in your Upd.ids file */
  6.  
  7. parse arg id
  8.  
  9. if (~show('P','PLAY')) then
  10.   address 'COMMAND' 'run >NIL: Progs:Upd -b 10000'
  11.  
  12. address PLAY "id" id
  13.  
  14.