slowmotion1914 Posted August 2, 2012 Posted August 2, 2012 (edited) Here i have a lisp routine to explode only the leader after creation (its due to how the leaders translate into another program, is why we explode them) but the explode portion never seems to run. as a matter of fact nothing runs after the qleader command. Can someone take a look and show me whats wrong or fix. (defun c:gt (/ lastEnt ss) (setvar "qaflags" 1) (setq lastEnt (entlast) ss (ssadd) ) (command "Qleader") (while (setq lastEnt (entnext lastEnt)) (ssadd lastEnt ss) ) (sssetfirst nil ss) (COMMAND "EXPLODE" ss) (setvar "qaflags" 0) (setq ss nil) (setq lastEnt nil) (princ) ) Edited August 2, 2012 by slowmotion1914 update code Quote
SLW210 Posted August 2, 2012 Posted August 2, 2012 Please read the CODE POSTING GUIDELINES and edit your post! Quote
slowmotion1914 Posted August 2, 2012 Author Posted August 2, 2012 Updated code following the guidelines 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.