caravaggio Posted October 18, 2009 Posted October 18, 2009 Hi, I have been using (command "change" obj ""...) to change colour in my lisps. However, I would like to know how it can be done if I append a (62 . 1) instead. Thank you !! Quote
caravaggio Posted October 18, 2009 Author Posted October 18, 2009 I have figured it out myself !! sorry !! Quote
alanjt Posted October 18, 2009 Posted October 18, 2009 Nice name? Fan of the painter, I assume? Another option (for vla): (defun c:test (/ ent) (and (setq ent (car (entsel "\nSelect object: "))) (setq ent (vlax-ename->vla-object ent)) (vla-put-color ent 3) ) ) would change the selected object to color 3. Quote
caravaggio Posted October 18, 2009 Author Posted October 18, 2009 A fan of this painter !! Thanks so much for vla option ! Quote
alanjt Posted October 18, 2009 Posted October 18, 2009 A fan of this painter !! Thanks so much for vla option ! Any painter that used to study corpses to make his subjects more real is aces in my book. :wink: No problem. 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.