Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 481 Bytes

File metadata and controls

23 lines (13 loc) · 481 Bytes

frame.name

Availability

Flash MX 2004.

Usage

frame.name

Description

Property; a string that specifies the name of the frame.

Example

The following example sets the name of the first frame, top layer to "First Frame" and then stores the name value in the frameLabel variable:

fl.getDocumentDOM().getTimeline().layers[0].frames[0].name = 'First Frame'; 
var frameLabel = fl.getDocumentDOM().getTimeline().layers[0].frames[0].name;