Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 532 Bytes

File metadata and controls

23 lines (13 loc) · 532 Bytes

shape.isFloating

Availability

Flash CS6.

Usage

shape.isFloating

Description

Read-only property; if true, the shape is floating above the parent frame’s (or group’s) shape. Also, if true, this type of shape will have it's own matrix, similar to a drawing object.

Example

The following example displays whether a specified shape is floating:

var myShape = fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements[0]; 
fl.trace("is shape floating? " + myShape.isFloating);