I am missing How to activate and get a layer number of in the PARAM_POSITION Dialog. (Especially to know how to activate the layer setting)
Please login to see this attachment.
Currently The positions data recived as a integer, if include the layer info in it, to use the user defined struct?
paramExt* getxyl = (paramExt*)CNC_GetParameter(rdPtr);
xylParam* xyl = (xylParam*)getxyl->pextData;// custom struct
int xpos = HIWORD(xyl.layer);
int ypos = LOWORD(xyl.layer);
int layer = xyl.layer;
have any info?