Message 1 of 13
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello again!
I think my brain is fried at this point and I would like someone to take a fresh look at what I can do better.
(defun c:OOF ( / ) (command "offset" pause pause (setq ss (getpoint "\nspecify point on side to offset multiple lines :")) ss (while (> (getvar 'cmdactive) 0) (SETQ ENT (ENTLAST)) (SSADD ENT ESMTLIST) (command pause ss ) ) ) ) (DEFUN C:BOO(/) (COMMAND "BOUNDARY" PAUSE "" "ERASE" ESMTLIST "" ) ) (defun c:TEST3 (/) (setq LVL (SSGET "X" '((100 . "AeccDbFace")))) )
I am trying to get the oof commands selection set esmtlist to span thru commands I can't seem to get that to work except for setting esmtlist out of the command.
I don't think there is anything wrong with the boo command but i wanted to show you why i wanted to span the selection set.
Lastly there is command test 3, I have a "aeccdbface" entity that is in the middle of the object I am offsetting lines in. Is there any way i can use that object coordinates to skipp the SS selection set?
As always thanks in advance
Shawn T
Solved! Go to Solution.