home *** CD-ROM | disk | FTP | other *** search
/ Merciful 3 / Merciful_Release_3.bin / software / m / midiplayv2.58.lha / MidiPlay / ARexx / Example1.rexx < prev    next >
OS/2 REXX Batch file  |  1994-08-03  |  424b  |  16 lines

  1. /* This is an example ARexx script for use with MidiPlay.
  2.    Use the following parameter: MESSAGEREXX=ThisScript.rexx
  3.    When MidiPlay shows a message on the screen, it calls ThisScript.
  4.    Argument Text consists of the text of the message.
  5.  
  6.    This particular example tries to speak the message. 
  7.    NOTE! Don't try to speak the About message, its too long. */
  8.  
  9. options results
  10.  
  11. parse arg Text
  12.  
  13. address command
  14.  
  15. 'say' Text
  16.