p7q Posted March 28 Posted March 28 Why dont use command flatten in lisp. (setq ss (ssget)) (if ss (progn (setq count (sslength ss)) (setq i 0) (while (< i count) (setq obj (ssname ss i)) (command "_FLATTEN" obj "" " ") (setq i (+ i 1)) ) ) ) when ı use this command ı see error ; Unknown command "FLATTEN". Quote
Tharwat Posted March 28 Posted March 28 It's AutoLISP custom program whilst you might call it this way. (C:flatten) Quote
SLW210 Posted March 29 Posted March 29 You may also need (acet-load-expresstools) Needed on some Express Tools to use in LISP. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.