Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 697 Bytes

File metadata and controls

27 lines (15 loc) · 697 Bytes

frame.convertToFrameByFrameAnimation()

Availability

Adobe Animate.

Usage

frame.convertToFrameByFrameAnimation()

Returns

Returns boolean. Returns true if the frame contains animation that can be converted to frame by frame animation. For example: return true for Motion Tween frame or Classic Tween frame; return false for other type of frame such as static.

Description

Method; Converts the current frame to Frame-by-Frame Animation.

Example

The following example converts the frame 0 to Frame-by-Frame Animation:

var result = fl.getDocumentDOM().getTimeline().layers[0].frames[0].convertToFrameByFrameAnimation(); 
fl.trace(result);