Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 568 Bytes

File metadata and controls

23 lines (15 loc) · 568 Bytes

compiledClipInstance.accName

Availability

Flash MX 2004.

Usage

compiledClipInstance.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.

Example

The following example gets and sets the accessibility name of the first selected object:

// Get the name of the object.
var theName = fl.getDocumentDOM().selection[0].accName;
// Set the name of the object.
fl.getDocumentDOM().selection[0].accName = 'Home Button';