Results 1 to 8 of 8

Thread: Simplified version of Quick Select.

  1. #1
    Active Member
    Join Date
    2003-08
    Posts
    63
    Login to Give a bone
    0

    Default Simplified version of Quick Select.

    I've gotten a request to have a simplified version of Quick Select. What he wants to do is this:
    1. Click an icon and then be prompted to select an area of his drawing (basically create a selection set of objects)
    2. Click an object (or objects) whose layer (or layers), from that selection set, he'd actually like to have objects selected (similar to layiso).
    3. Hit spacebar/enter and have all objects on the layers whose objects were selected, and were in the original selection set, be selected so he can then move, rotate, erase, etc.

    Does anyone have any idea how I can create a customized command to do this?

    Thanks,
    Scott

  2. #2
    Administrator rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Earth
    Posts
    9,805
    Login to Give a bone
    0

    Default Re: Simplified version of Quick Select.

    If you don't mind selecting the single object (for layer identification) first, then give this a try

    Code:
    (setq lay (cdr (assoc 8 (entget (car (entsel))))))
    (sssetfirst nil (ssget (list (cons 8 lay))))
    You can add your own prompts and wrap it in a (defun) if desired.
    R.K. McSwain | CAD Panacea |

  3. #3
    100 Club sgroff's Avatar
    Join Date
    2006-07
    Location
    The Group "W" Bench
    Posts
    107
    Login to Give a bone
    0

    Default Re: Simplified version of Quick Select.

    autocad is already capable of doing this in the properties pallete

  4. #4
    Administrator rkmcswain's Avatar
    Join Date
    2004-09
    Location
    Earth
    Posts
    9,805
    Login to Give a bone
    0

    Default Re: Simplified version of Quick Select.

    Quote Originally Posted by sgroff
    autocad is already capable of doing this in the properties pallete
    Care to give a step by step? Thanks.
    R.K. McSwain | CAD Panacea |

  5. #5
    100 Club sgroff's Avatar
    Join Date
    2006-07
    Location
    The Group "W" Bench
    Posts
    107
    Login to Give a bone
    0

    Default Re: Simplified version of Quick Select.

    Quote Originally Posted by rkmcswain
    Care to give a step by step? Thanks.

    sorry. i miss spoke.

    although, there is the select similar command

  6. #6
    Administrator Opie's Avatar
    Join Date
    2002-01
    Location
    jUSt Here (a lot)
    Posts
    9,106
    Login to Give a bone
    0

    Default Re: Simplified version of Quick Select.

    Quote Originally Posted by sgroff
    sorry. i miss spoke.

    although, there is the select similar command
    Select Similar is not a vanilla AutoCAD command. It is included in several vertical apps.
    If you have a technical question, please find the appropriate forum and ask it there.
    You will get a quicker response from your fellow AUGI members than if you sent it to me via a PM or email.
    jUSt

  7. #7
    100 Club david-k's Avatar
    Join Date
    2015-12
    Location
    San Diego, CA
    Posts
    100
    Login to Give a bone
    0

    Default Re: Simplified version of Quick Select.

    Is 'ssx' part of basic AutoCAD or is it part of express tools or a vertical?

  8. #8
    Certified AUGI Addict jaberwok's Avatar
    Join Date
    2000-12
    Location
    0,0,0 The Origin
    Posts
    8,570
    Login to Give a bone
    0

    Default Re: Simplified version of Quick Select.

    Quote Originally Posted by david-k
    Is 'ssx' part of basic AutoCAD or is it part of express tools or a vertical?
    It's always been there as a lisp-callable function but it's been more obvious lately because it has been in ET.

Similar Threads

  1. 2014: USING QUICK SELECT
    By rmk in forum AutoCAD General
    Replies: 3
    Last Post: 2014-02-21, 06:17 PM
  2. Quick select problem
    By nextvkin in forum AutoCAD General
    Replies: 2
    Last Post: 2010-06-01, 11:10 PM
  3. Controlling Quick Select
    By hruetten in forum AutoCAD Customization
    Replies: 5
    Last Post: 2006-01-12, 07:47 PM
  4. Quick Select
    By jrichardson in forum Revit Structure - Wish List
    Replies: 1
    Last Post: 2005-10-06, 10:38 AM
  5. Quick Select - Now that ain't right!
    By CADMama in forum ACA General
    Replies: 8
    Last Post: 2004-09-06, 10:45 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •