|
|
text.silent
AvailabilityFlash
MX 2004.
DescriptionProperty;
a Boolean value that specifies whether the object is accessible.
This is equivalent to the inverse logic of the Make Object Accessible
setting in the Accessibility panel. That is, if silent is true,
Make Object Accessible is deselected. If it is false,
Make Object Accessible is selected.
ExampleThe
following example determines if the object is accessible (a value
of false means that it is accessible):
var isSilent = fl.getDocumentDOM().selection[0].silent;
The
following example sets the object to be accessible:
fl.getDocumentDOM().selection[0].silent = false;
|