hi all, I've 2 LISP questions in layer. 1) How to we specify a layer in newly created object when we use commnd. (command pline pt1 pt2 c) 2) How do we move an existing object from one layer to another?
a. Preset the layer first with (setvar "clayer" "yourlayer) b. Change the layer afterwards using commands or vla-methods c. Accept the current layer. a. (vla-put-layer <vla-object> "yourlayer") b. (command "chprop" <ename or selection set> "la" "yourlayer") c. Have a reactor do a) above.