|
|
shape.isRectangleObject
AvailabilityFlash
CS3 Professional.
Usageshape.isRectangleObject
DescriptionRead-only
property; if true, the shape is a primitive Rectangle
object (was created using the Rectangle Primitive tool).
ExampleThe
following example displays "true" if the first
selected item is a primitive Rectangle object, "false"
if it is not:
var sel = fl.getDocumentDOM().selection[0];
fl.trace(sel.isRectangleObject);
|