chrisya Posted March 18, 2020 Posted March 18, 2020 (edited) Hi, I have problem with code: (defun c:zztest (/ a)(setq a (ssget "X" (list (cons 0 "DIMENS*"))))(command "_explode" a "") (princ) ) DOESNT WORK (defun c:zztest (/ a)(setq a (ssget "X" (list (cons 0 "DIMENS*"))))(command "_erase" a "") (princ) ) WORKS WELL Have you any idea why is that? Edited March 18, 2020 by chrisya title mistake Quote
Lee Mac Posted March 18, 2020 Posted March 18, 2020 Research the QAFLAGS system variable, and its use in conjunction with automating the EXPLODE command. 1 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.