Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 393 Bytes

File metadata and controls

23 lines (13 loc) · 393 Bytes

frame.isEmpty()

Availability

Adobe Animate.

Usage

frame.isEmpty()

Description

Method; a Boolean value. Lets you know whether the frame contains any elements.

Example

The following example illustrates use of this method.

var frame = fl.getDocumentDOM().getTimeline().layers[0].frames[0]; 
if (frame.isEmpty) fl.trace("first frame is empty");