Angelo2449
Guest
Hello everyone,
select a point
I would like to delete or move, after some instruction, this point.
How do I define it to be able to remove it or move it?
with point1 (via the coordinates) is not possible because, in the same position, there are more elements, what to do?
Thanks a million!
select a point
Code:
(setq lista (entget (car (entsel)) '("group")))
(setq xlist (assoc -3 lista))
(setq txtdata (car (cdr xlist)))
(setq point1 (cdr)
(setq en1 (cdr -1 ed1))
How do I define it to be able to remove it or move it?
with point1 (via the coordinates) is not possible because, in the same position, there are more elements, what to do?
Thanks a million!