Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/09/2024 in all areas

  1. Just found a thread (not by me) that answers my old question about toggling the crosshair tint. Here's the link for anyone interested: https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-change-crosshair-tint-for-x-y-z/td-p/12864833
    1 point
  2. to lega! that really worked, didn't know it adds vertices+poly in ss, so in other part in lisp where i have more objects created after poly it iterates normally , but when it's just poly you have to account for vertices, thank you
    1 point
  3. Oh you are creating a polyline that way...still the same problem and probably the solution. For example and what I tested only is this polyline creation part, lets say you have 6 pntucssort points, you are creating vertices and then you create polyline. The way you are creating your selection set of all created objects after profile_lastEnt, profile_ss has length of 7 (6 vertices and polyline). But you want to copy only polyline, can't copy vertices therefore the error. So you need to make selection set only with objects that are actually created and can be copied. So after creating each object (polyline, and later blocks and texts if I saw correctly) add that (entlast) to selection set. Or you could filter the selection set before ctd function to remove vertices, but I would filter them as objects are created, so after each object created put this: (setq obj (entlast)) (ssadd obj profile_ss)
    1 point
×
×
  • Create New...