Jump to content

change color when selected


Nobull84

Recommended Posts

Is it possible to have a program or lisp that will change the color of an object as it is selected? Then maybe change the color back after whatever action is done? The types of dwgs we do can get somewhat busy and it can be very easy to miss something. Can anyone tell me if this is possible or not?

 

Thanks,

 

Nobull

Link to comment
Share on other sites

You can have them highlight with dashed lines and thickened when selected, plus the grips that show. That should take care of your needs. See options, selection, Visual Effect Settings.... for the first two.

Link to comment
Share on other sites

(defun ayEntSSHighLight        (SSorEntName / oldGrips)
 (setq oldGrips (getvar "Grips"))
 (setvar "Grips" 0)
 (cond        ((= (type SSorEntName) 'PICKSET)                              
        (sssetfirst nil SSorEntName)
       )                                                             
       ((= (type SSorEntName) 'ENAME)                                     
        (sssetfirst nil (ssadd SSorEntName (ssadd)))
       )                                                              
 )                                                                      
 (setvar "Grips" oldGrips)
)

 

(defun HH:ayEntSSHighLight (SSorEntName / oldGrips)
 (defun EntHighLight (e / PTS)
   (setq pts (HH:Ent4pt e T))
   (grvecs (list 1
                 (car pts)
                 (cadr pts)
                 1
                 (cadr pts)
                 (caddr pts)
                 1
                 (caddr pts)
                 (cadddr pts)
                 1
                 (cadddr pts)
                 (car pts)
           )
   )
 )
 (cond        ((= (type SSorEntName) 'PICKSET)
        (repeat (setq n (sslength SSorEntName))
          (EntHighLight (ssname SSorEntName (setq n (1- n))))
        )
       )
       ((= (type SSorEntName) 'ENAME)
        (EntHighLight SSorEntName)
       )
 )
)

Link to comment
Share on other sites

Thank you rkent for the response. I currently use these settings but it can still be very easy to miss something on these dwgs.

 

luihaixin88, I loaded these into my startup suite but I do not see any change. Anything I'm missing with these? I'm assuming these lisps are meant to highlight a selection differently than CAD defaults?

 

 

Thanks again,

 

Nobull

Link to comment
Share on other sites

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