Making Director Movies Accessible
559
Using accessibility Lingo
If you have a basic understanding of Lingo, you can write custom scripts to add text-to-speech
functionality to your movies. For more information about Lingo, see Chapter 16, “Writing
Scripts with Lingo,” on page 385.
First, you must initialize the speech software.
To initialize the text-to-speech software:
•
Use the
voiceInitialize()
command.
The following frame script tests whether text-to-speech software is installed. If no software is
installed, the script displays an alert dialog box.
on exitFrame
if voiceInitialize() then
go to frame "Start"
else
alert "Text-to-speech is not available"
end if
end
To determine the number of available voices:
•
Use the
voiceCount()
function.
To return a property list that describes the name, gender, age and index number of the
current voice:
•
Use the
voiceGet()
function.
To return a list of property lists that describes all the available voices:
•
Use the
voiceGetAll()
function.
To set a particular voice as the current voice:
•
Use the
voiceSet()
command.
After you select a voice for speech synthesis, you can control the progress of the speech.
To begin speech synthesis:
•
Use the
voiceSpeak()
command.
To temporarily pause the speech:
•
Use the
voicePause()
command.
Some speech engines might continue to speak for several seconds after the pause command
is used.
To resume the speech:
•
Use the
voiceResume()
command.
To stop speech synthesis:
•
Use the
voiceStop()
command.
Содержание DIRECTOR MX-USING DIRECTOR MX
Страница 1: ...Using Director MX Macromedia Director MX...
Страница 12: ...Contents 12...
Страница 156: ...Chapter 4 156...
Страница 202: ...Chapter 6 202...
Страница 244: ...Chapter 7 244...
Страница 292: ...Chapter 10 292...
Страница 330: ...Chapter 12 330...
Страница 356: ...Chapter 13 356...
Страница 372: ...Chapter 14 372...
Страница 442: ...Chapter 16 442...
Страница 472: ...Chapter 18 472...
Страница 520: ...Chapter 19 520...
Страница 536: ...Chapter 20 536...
Страница 562: ...Chapter 23 562...
Страница 566: ...Chapter 24 566...
Страница 602: ...Chapter 27 602...