Message 1 of 7
boundary acad 2025
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I have installed Acad 2025 German.
Can someone help me why the following Lisp no longer works properly?
The islands within the boundary are also recognized. However, they should be ignored.
(defun c:umgrxlinien (/ AWS)
(if(setq AWS(ssget "X"
'( (-4 . "<OR")
(0 . "XLINE")
(0 . "Ray")
(-4 . "OR>")
)
))
(command "-umgrenzung" "o" "U" "N" AWS "" "" "_non" Pause)
)
(princ)
)