• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

lisp for selection of treats

  • Thread starter Thread starter wallace23
  • Start date Start date

wallace23

Guest
Good morning to all,
I would need a lisp to automatically select all the dashes present in a drawing and bring them back into the display order. .
Can anyone help me? (:
Thank you in advance!
 
Yes, but I wanted to combine it with a lisp that would do everything on its own: select all restraints and bring under
 
(defun c:orderhatch ()
(command "_draworder"
(ssget "x" (list (cons 0 "hatch")))
""
"_b"
)
)

bye
 
How would the lisp change if you wanted to select a certain layer instead? For example, the "pippo" layer?
 
(defun c:orderhatch ()
(command "_draworder"
(ssget "x" (list (cons 8 "pippo")))
""
"_b"
)
)
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top