compiledClipInstance.shortcut
Availability
Flash MX 2004.
Usage
compiledClipInstance.shortcut
Description
Property; a string that is equivalent to the Shortcut field in the Accessibility panel. The
shortcut is read by the screen readers. This property is not available for dynamic text fields.
Example
The following example illustrates getting and setting the
// Get the shortcut key of the object.
var theShortcut = fl.getDocumentDOM().selection[0].shortcut;
// Set the shortcut key of the object.
fl.getDocumentDOM().selection[0].shortcut = "Ctrl+I";
compiledClipInstance.silent
Availability
Flash MX 2004.
Usage
compiledClipInstance.silent
Description
Property; a Boolean value that enables or disables the accessibility of the object; equivalent to
the inverse logic of Make Object Accessible setting in the Accessibility panel. That is, if
is
, then Make Object Accessible is unchecked. If
silent
true
Object Accessible is checked.
Example
The following example illustrates getting and setting the
// Query if the object is accessible.
var isSilent =fl.getDocumentDOM().selection[0].silent;
// Set the object to be accessible.
fl.getDocumentDOM().selection[0].silent = false;
52
Objects
property:
shortcut
is
silent
false
property:
silent
, then Make
Need help?
Do you have a question about the FLASH 8-EXTENDING FLASH and is the answer not in the manual?