home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / hc / hypermac.sit / HyperMacintalk / card_10794.txt < prev    next >
Text File  |  1987-09-30  |  2KB  |  43 lines

  1. -- card: 10794 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 7110
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (button)
  9. -- low flags: 00
  10. -- high flags: 0000
  11. -- rect: left=251 top=76 right=90 bottom=337
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: New Button
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   go to card id 2434
  23. end mouseUp
  24.  
  25.  
  26.  
  27.  
  28. -- part contents for background part 7
  29. ----- text -----
  30. How Macintalk Works (continued)
  31.  
  32. -- part contents for background part 8
  33. ----- text -----
  34. Before any other Macintalk commands can be issued, the Macintalk driver must first be initialized. This is done with the TurnSpeechOnΓÇá command. The format is
  35.  
  36.                 TurnSpeechOn [exceptionsFile]
  37.  
  38. The argument ΓÇÿexceptionsFile ΓÇÖ is the name of a file containing rules for pronouncing certain words. Macintalk already has over 400 rules for producing phonetics from English, but it still mispronounces many words. You can create an exceptions file with a utility called ExceptionEdit and put into that file the correct pronunciation of as many English words as you like. Further discussion of ExceptionEdit is beyond the scope of this stack; like Macintalk, ExceptionEdit is available from many computer clubs and bulletin board systems.
  39.  
  40. If this argument is omitted (the usual case),  no exception file will be used. You can also specify "noReader" as the argument, in which case it is assumed no English-to-phonetic translation will be done (that is, you will use the command
  41. ΓÇÿSayPhoneticΓÇÖ only, and never call ΓÇÿSayΓÇÖ or ΓÇÿPhonemesΓÇÖ).
  42.  
  43.