I need select a Polyline with a variable,
This code is ok!
(setq selpline (ssget "_x" '((0 . "LWPOLYLINE")(8 . "First"))))
I need convert to:
(setq cod "Second")
(setq selpline (ssget "_x" '((0 . "LWPOLYLINE")(8 . cod))))
But this code return
Command: ; error: bad SSGET list value
I need help to make this code.
Thanks
Rodrigo