home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1993-02-25 | 771 b | 24 lines |
- Rem example14.amos
- '
- Rem don't forget to turn up the volume
- '
- Rem The say command
- '
- '
- Say "Hello, this is an example of the SAY command."
- Say " If you intend to use this command in your own programs,"
- Say "you must make sure that the narrator device is present on the disk you are using."
- Say "This file can be found in the DEVS drawer of your Amos disk"
- '
- '
- Rem the set talk command let's you change the sex,mode,pitch and rate of SAY.
- '
- '
- Rem the commas mean use the default setting for the number that should be
- Rem there in it's place
- Set Talk 1,,, : Say "THIS IS A FEMALE VOICE"
- Set Talk 1,1,, : Say "This is a female voice with inotation"
- Set Talk 0,0,320, : Say "A saprano voice"
- Set Talk ,,65, : Say "A deep voice"
- Set Talk ,,,40 : Say "THIS IS SLOW"
- Edit