Results 1 to 5 of 5

Thread: filter question

  1. #1
    Member
    Join Date
    2003-06
    Location
    Wollongong, Australia.
    Posts
    47

    Default filter question

    afternoon all,

    quick question about the filter command, is there a way of filtering the entire drawing without having to CTRL A before executing filter command?

    i was hoping for a "search entire drawing" switch similar to QSELECT.

    cheers.

  2. #2
    AUGI Addict
    Join Date
    2005-07
    Posts
    2,354

    Default Re: filter question

    Quote Originally Posted by Thundercleese View Post
    afternoon all,

    quick question about the filter command, is there a way of filtering the entire drawing without having to CTRL A before executing filter command?

    i was hoping for a "search entire drawing" switch similar to QSELECT.

    cheers.
    Why do you want to avoid having to select all?

    Without using a custom lisp/vba code I think the only way you can do that is by creating a macro to always select all before running the filter command. It would still select all but would avoid you having to do it manually.

  3. #3
    AUGI Addict
    Join Date
    2005-07
    Posts
    2,354

    Default Re: filter question

    If you want to use a macro, create a new tool button with this macro: ^C^C_ai_selall;filter

  4. #4
    AUGI Director scott.wilcox's Avatar
    Join Date
    2001-01
    Location
    Edmonton, Alberta
    Posts
    961

    Default Re: filter question

    Selecting everything can be done after you define your filter(s); autoCAD will prompt you to select objects after you hit the APPLY button.
    Why draw straws? Just draw one straw and array it.

    Scott Wilcox - Edmonton, Alberta


  5. #5
    Certifiable AUGI Addict irneb's Avatar
    Join Date
    2007-07
    Location
    Jo'burg SA
    Posts
    4,344

    Default Re: filter question

    So yes you could do it the other way round and make the macro:
    Code:
    ^C^Cfilter;all;;
    Edit: Or even so it works with filtering inside a command
    Code:
    ^P$M=$(if,$(>,$(getvar,cmdactive),0),'Filter,^C^CFilter);All;;
    Knowledge is proportional to experience, but wisdom is inversely proportional to ego!
    My little bit of "wisdom": Hind-sight is useless, unless used to improve the next forethought!

Similar Threads

  1. Phase filter over rides messing with Filter over rides
    By tim.101799 in forum Revit Architecture - General
    Replies: 0
    Last Post: 2008-10-30, 08:20 PM
  2. FILTER
    By Maurice.148748 in forum AutoCAD General
    Replies: 2
    Last Post: 2007-10-09, 04:52 PM
  3. Filter!
    By tha in forum Revit Architecture - General
    Replies: 4
    Last Post: 2007-08-08, 07:18 PM
  4. filter
    By Cheuk Ling in forum Revit Architecture - General
    Replies: 5
    Last Post: 2007-01-15, 12:45 AM
  5. Filter??
    By niki_funky in forum Revit Architecture - General
    Replies: 5
    Last Post: 2006-04-14, 07:05 AM

Posting Permissions

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