creating a selection set from known handles

Discussion in 'AutoCAD' started by T-Rex, Mar 1, 2005.

  1. T-Rex

    T-Rex Guest

    All
    If I know the handles of several acad entities can I use a simple lisp
    command to create a selection set?
    Acad2000
    rex
     
    T-Rex, Mar 1, 2005
    #1
  2. You could do something like this.


    (setq ss (ssadd))
    (foreach item <my list of handles>
    (ssadd (handent item) ss) )
     
    Jason Piercey, Mar 1, 2005
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.