Lingo Dictionary
147
If you try to set a monitor’s color depth to a value that monitor does not support, the monitor’s
color depth doesn’t change.
On computers with more than one monitor, the
colorDepth
property refers to the monitor
displaying the Stage. If the Stage spans more than one monitor, the
colorDepth
property
indicates the greatest depth of those monitors;
colorDepth
tries to set all those monitors to the
specified depth.
This property can be tested and set.
Examples
This statement tells Director to play the segment Full color only if the monitor color depth is set
to 256 colors:
if the colorDepth = 8 then play movie "Full color"
The following handler tries to change the color depth, and if it can’t, it displays an alert:
on TryToSetColorDepth desiredDepth
the colorDepth = desiredDepth
if the colorDepth = desiredDepth then
return true
else
alert "Please change your system to" && desiredDepth &&"color depth and
reboot."
return false
end if
end
When changing the user’s monitor color depth settings, it is good practice to restore the original
depth when the movie has finished. In Windows, the command
set the colorDepth = 0
restores the user’s preferred settings from the control panel.
See also
switchColorDepth
colorList
Syntax
member(
whichCastmember
).modelResource(
whichModelResource
).\
colorList
member(
whichCastmember
).modelResource(
whichModelResource
).\
colorList[
index
]
member(
whichCastmember
).model(
whichModel
).meshdeform.mesh\
[
meshIndex
].colorList
member(
whichCastmember
).model(
whichModel
).meshdeform.mesh\
[
meshIndex
].colorList[index]
Description
3D property; allows you to get or set every color used in a mesh. This command is accessible only
for model resources of the type #mesh. Any single color can be shared by several vertices (faces) of
the mesh. Alternately, you can specify texture coordinates for the faces of the mesh and apply a
shader to models that use this model resource.
16
32,768 or 65,536 colors
32
16,777,216 colors
Содержание DIRECTOR MX-LINGO DICTIONARY
Страница 1: ...Lingo Dictionary Macromedia Director MX...
Страница 756: ...Index 756...