home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / TOOLS / DIALIP / NOTIFY.CMD < prev    next >
OS/2 REXX Batch file  |  1997-09-09  |  418b  |  22 lines

  1. /**/
  2.  
  3. parse arg messages user
  4.  
  5. do c = 1 to 5
  6.     call notify_audio
  7.     call syssleep 45
  8. end /* do */
  9.  
  10. 'exit'
  11. exit
  12.  
  13. /*************************/
  14. notify_audio:   /* play.cmd would be in like x:\mmos2 after you install multimedia */
  15.     pfile = which( notify.wav )
  16.     say 'Will play file ='pfile'='
  17.     call play 'file="'pfile'"'
  18.     call play 'file="'pfile'"'
  19.     call play 'file="'pfile'"'
  20. return
  21.  
  22.