elt.beginEdit();
var contourArray = elt.contours;
var contourCount = 0;
for (i=0;
i<contourArray.length;
{
var contour = contourArray[i];
contourCount++;
var he = contour.getHalfEdge();
var iStart = he.id;
var id = 0;
while (id != iStart)
{
// get the next vertex
var vrt = he.getVertex();
var x = vrt.x;
var y = vrt.y;
fl.trace("vrt: " + x + ", " + y);
he = he.getNext();
id = he.id;
}
}
elt.endEdit();
contour.interior
Availability
Flash MX 2004.
Usage
contour.interior
Description
Read-only property: the value is
Example
This example traverses all the contours in the selected shape and shows the value of the
property for each contour in the Output panel:
var elt = fl.getDocumentDOM().selection[0];
elt.beginEdit();
var contourArray = elt.contours;
var contourCount = 0;
for (i=0;
i<contourArray.length;
var contour = contourArray[i];
fl.trace("Next Contour, interior:" + contour.interior );
contourCount++;
i++)
if the contour encloses an area;
true
i++) {
otherwise.
false
interior
Contour object
57
Need help?
Do you have a question about the FLASH MX 2004-FLASH JAVASCRIPT DICTIONARY and is the answer not in the manual?