Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/05/2023 in all areas

  1. I don't have CAD running at the weekend of course, and ssget might be slightly different in it's filters. The error is in the line (setq sel1 (ssget "_X" '((8 . (car item))))) I reckon: '( means a list as it is written where (list means evaluate the following list, might be that you need to use that instead? (8 . (car item)) might need to be cons to make up that dotted pair list, which makes a list and evaluates the parts in it Something like this might work better? (setq sel1 (ssget "_X" (list (cons 8 (CAR ITEM))) ))
    2 points
  2. (while (< 0 (getvar 'cmdactive)) (command "") ) was put after PEDIT command and is just makking sure that after known tokens PEDIT command exit with only needed "" - ENTER times ... - while cmdactive, then routine continues to next statement(s)...
    1 point
  3. Steven P (tblsearch "dimstyle" "TA-DIM-50") your missing style name.
    1 point
×
×
  • Create New...