Project Parameterization, rocker demo

 From:  Michael Gibson
6860.6 In reply to 6860.5 
Hi Brian,

> Cannot extract the y value of the points.
>
> /code
> projectfactory.update();
> var ktpointobj = projectfactory.getCreatedObjects();
> var ktpoint = ktpointobj.item(0);

So here ktpoint is a "point object" which has the standard geometry object properties like style, hidden, name, etc... then in addition to that set of common properties that curves and solids also have, there is an additional .pt property on it that will give back a "data structure point" that has the x,y,z values on it.

So to get the x,y,z values you need to get at the .pt property first, like: ktpoint.pt.y

- Michael