|
|
shape.beginEdit()
AvailabilityFlash
MX 2004.
DescriptionMethod;
defines the start of an edit session. You must use this method before issuing
any commands that change the Shape object or any of its subordinate parts.
ExampleThe
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();
|