Jun 4, 2004 #1 lispino Technical User Feb 8, 2004 8 PT I need to send all the hatch to the back and was triyng to use this simple lisp (setq x_hatch (ssget "X" '((0."hatch")))) (command "draworder" x_hatch "" "b") But it shows the message "bad SSGET list" can anyone help ??
I need to send all the hatch to the back and was triyng to use this simple lisp (setq x_hatch (ssget "X" '((0."hatch")))) (command "draworder" x_hatch "" "b") But it shows the message "bad SSGET list" can anyone help ??
Jun 4, 2004 #2 TCARPENTER Programmer Mar 11, 2002 766 US Lispino, Try this: (setq x_hatch (ssget "X" '((0 . "HATCH")))) Note the spaces between the: 0, ., and "HATCH". HTH Todd Upvote 0 Downvote
Lispino, Try this: (setq x_hatch (ssget "X" '((0 . "HATCH")))) Note the spaces between the: 0, ., and "HATCH". HTH Todd
Jun 4, 2004 Thread starter #3 lispino Technical User Feb 8, 2004 8 PT problem resolved :], many thanks Upvote 0 Downvote