home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / speech.zip / DEMO.BAT next >
DOS Batch File  |  1991-03-16  |  650b  |  17 lines

  1. REM  The READ program reads the specified file aloud using
  2. REM  SPEECH.COM's phonem system. If the file does not exist or SPEECH
  3. REM  is not loaded, an appropriate message will be given. To hear direct
  4. REM  keyboard input use CON for the file name. The DOS editing keys will
  5. REM  be active to edit the previous line.
  6.  
  7. READ SAMPLE.TXT
  8.  
  9. REM  If printing of the phonem file is not desired, simply re-direct the
  10. REM  standard output to a file or the NUL device :
  11.  
  12. READ SAMPLE.TXT > NUL
  13.  
  14. REM  This might be useful when adding voice to batch files that print nice
  15. REM  full-screen menus that would be destroyed when the file is printed.
  16.  
  17.