![MACROMEDIA FLASH 8-EXTENDING FLASH Manual Download Page 391](http://html1.mh-extra.com/html/macromedia/flash-8-extending-flash/flash-8-extending-flash_manual_3348049391.webp)
Shape object
391
Description
Read-only property; an array of Edge objects (see
Edge object
).
shape.endEdit()
Availability
Flash MX 2004.
Usage
shape.endEdit()
Parameters
None.
Returns
Nothing.
Description
Method; defines the end of an edit session for the shape. All changes made to the Shape object
or any of its subordinate parts will be applied to the shape. You must use this method after
issuing any commands that change the Shape object or any of its subordinate parts.
Example
The following example takes the currently selected shape and removes the first edge in the
edge array from it:
var shape = fl.getDocumentDOM().selection[0];
shape.beginEdit();
shape.deleteEdge(0);
shape.endEdit();
shape.isDrawingObject
Availability
Flash 8.
Usage
shape.isDrawingObject
Description
Read-only property; if
true
, the shape is a drawing object.
Summary of Contents for FLASH 8-EXTENDING FLASH
Page 1: ...Extending Flash...
Page 38: ...38 Top Level Functions and Methods...
Page 532: ...532 Objects...
Page 554: ...554 C Level Extensibility...