Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 671 Bytes

File metadata and controls

24 lines (14 loc) · 671 Bytes

symbolInstance.accName

Availability

Flash MX 2004.

Usage

symbolInstance.accName

Description

Property; a string that is equivalent to the Name field in the Accessibility panel. Screen readers identify objects by reading the name aloud. This property is not available for graphic symbols.

Example

The following example stores the value for the Accessibility panel name of the object in the theName variable:
var theName = fl.getDocumentDOM().selection[0].accName;

The following example sets the value for the Accessibility panel name of the object to Home Button: 
fl.getDocumentDOM().selection[0].accName = "Home Button";