Jump to content

Recommended Posts

Posted

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". 

Posted

It's AutoLISP custom program whilst you might call it this way.

(C:flatten)

Posted

You may also need

(acet-load-expresstools)

 Needed on some Express Tools to use in LISP.

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...