Message 1 of 11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
As the title suggests, I'm looking to create a lisp that can generate a revision cloud (with 1/8" arc length) out of an existing polyline, and then modify it's width (1/64") and layer ("REVISION"). Trouble is, I'm not sure how to select the new cloud after the REVCLOUD function ends. Here's all I've got so far. I've included the "Reverse direction" prompt because it appears that running the revcloud command this way prevents the prompt from appearing on its own.
(defun c:rvc (/ ) (command "revcloud" "a" "1/8" "1/8" "o" pause) (prompt "\nReverse direction [Yes/No] <No>:") (command pause) ;need to select the revcloud here )
Solved! Go to Solution.