Message 1 of 24
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Please help.
I have the following Lisp:
(defun c:umgrxlinien (/ AWS)
(setvar "HPISLANDDETECTIONMODE" 0)
(setvar "HPISLANDDETECTION" 2)
(if(setq AWS(ssget "X"
'( (-4 . "<OR")
(0 . "XLINE")
(0 . "Ray")
(-4 . "OR>")
)
))
(command-s "-umgrenzung" "o" "U" "N" AWS "" "" "_non" Pause))
(princ)
)
The error only occurs in Acad 2025. In Acad 2024 everything works normally and a boundary is created within the Xlines.
In 2025, however, if a line crosses the boundary of the Xlines, only the part up to this line is recognized as a boundary.
I have tried many things but nothing works.
Can someone help?
Thanks
Martin
Solved! Go to Solution.